diff options
author | Chad Austin <chad@imvu.com> | 2013-04-17 17:28:27 -0700 |
---|---|---|
committer | Jukka Jylänki <jujjyl@gmail.com> | 2013-04-18 20:08:40 +0300 |
commit | b4cc2e135b1d611fa54c28bf05aada1657c97b30 (patch) | |
tree | 036eda4a210e5af907240a988ca16e7cf7b3ee65 /tests/embind/embind_test.cpp | |
parent | f25a4c9d196b5436bf526308cb9d771f3610dd81 (diff) |
calloperator wasn't pulling its own weight. We probably should have a higher-level register_function though...
Diffstat (limited to 'tests/embind/embind_test.cpp')
-rw-r--r-- | tests/embind/embind_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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);
|