aboutsummaryrefslogtreecommitdiff
path: root/system
diff options
context:
space:
mode:
authorjinsuck <jkim@imvu.com>2012-12-10 08:57:06 -0800
committerJukka Jylänki <jujjyl@gmail.com>2013-04-12 14:22:28 +0300
commita668fe09c459f0a5691d43b81a16f09cfb9fd43a (patch)
tree048d4c7d6c419d555ca74f8eab3f627d2a8de1ec /system
parentc0fce04cc6ef9920f9d91dbd3720b58ae171e80c (diff)
remove an unused method
Diffstat (limited to 'system')
-rw-r--r--system/include/emscripten/val.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/system/include/emscripten/val.h b/system/include/emscripten/val.h
index e2d35382..91becb4f 100644
--- a/system/include/emscripten/val.h
+++ b/system/include/emscripten/val.h
@@ -84,10 +84,6 @@ namespace emscripten {
return *this;
}
- bool exist(const char* key) const {
- return internal::_emval_has_property(handle, key);
- }
-
val get(const char* key) const {
return val(internal::_emval_get_property(handle, key));
}