aboutsummaryrefslogtreecommitdiff
path: root/system
diff options
context:
space:
mode:
authorChad Austin <chad@imvu.com>2013-04-17 17:28:27 -0700
committerJukka Jylänki <jujjyl@gmail.com>2013-04-18 20:08:40 +0300
commitb4cc2e135b1d611fa54c28bf05aada1657c97b30 (patch)
tree036eda4a210e5af907240a988ca16e7cf7b3ee65 /system
parentf25a4c9d196b5436bf526308cb9d771f3610dd81 (diff)
calloperator wasn't pulling its own weight. We probably should have a higher-level register_function though...
Diffstat (limited to 'system')
-rwxr-xr-xsystem/include/emscripten/bind.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/system/include/emscripten/bind.h b/system/include/emscripten/bind.h
index 0bb21290..cd35a238 100755
--- a/system/include/emscripten/bind.h
+++ b/system/include/emscripten/bind.h
@@ -1070,11 +1070,6 @@ namespace emscripten {
reinterpret_cast<GenericFunction>(classMethod));
return *this;
}
-
- template<typename ReturnType, typename... Args, typename... Policies>
- class_& calloperator(const char* methodName, Policies... policies) {
- return function(methodName, &ClassType::operator(), policies...);
- }
};
////////////////////////////////////////////////////////////////////////////////