aboutsummaryrefslogtreecommitdiff
path: root/system
diff options
context:
space:
mode:
authorChad Austin <chad@imvu.com>2013-12-05 18:12:06 -0800
committerBruce Mitchener <bruce.mitchener@gmail.com>2014-02-04 16:19:50 +0700
commitb09a5551ea298d0d8d95946a7131df342362ea51 (patch)
tree685d229644dcad45c80469c736876baab87768b9 /system
parentdd8b8e71bfc4aff36909eab7cc23c03907f02ef1 (diff)
Add a test to verify we can use static constants defined in classes.
Diffstat (limited to 'system')
-rw-r--r--system/include/emscripten/bind.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/include/emscripten/bind.h b/system/include/emscripten/bind.h
index 681d79d0..13fa2008 100644
--- a/system/include/emscripten/bind.h
+++ b/system/include/emscripten/bind.h
@@ -1206,7 +1206,7 @@ namespace emscripten {
_embind_register_constant(
name,
TypeID<const ConstantType&>::get(),
- asGenericValue(BindingType<const ConstantType&>::toWireType(v)));
+ asGenericValue(BT::toWireType(v)));
}
}