diff options
-rwxr-xr-x | system/include/emscripten/bind.h | 5 | ||||
-rw-r--r-- | tests/embind/embind_test.cpp | 2 |
2 files changed, 1 insertions, 6 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...); - } }; //////////////////////////////////////////////////////////////////////////////// diff --git a/tests/embind/embind_test.cpp b/tests/embind/embind_test.cpp index 7cde8e7f..e969f9d8 100644 --- a/tests/embind/embind_test.cpp +++ b/tests/embind/embind_test.cpp @@ -1573,7 +1573,7 @@ EMSCRIPTEN_BINDINGS(tests) { class_<std::function<std::string(std::string)>>("StringFunctorString")
.constructor<>()
- .calloperator<std::string, std::string>("opcall")
+ .function("opcall", &std::function<std::string(std::string)>::operator())
;
function("emval_test_get_function_ptr", &emval_test_get_function_ptr);
|