diff options
-rwxr-xr-x | src/embind/embind.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/embind/embind.js b/src/embind/embind.js index 99d7005b..72312af1 100755 --- a/src/embind/embind.js +++ b/src/embind/embind.js @@ -279,7 +279,7 @@ function __embind_register_function(name, argCount, rawArgTypesAddr, rawInvoker, var invoker = function() { throw new UnboundTypeError('Cannot call ' + name + ' due to unbound types: UnboundFoo'); - } + }; exposePublicSymbol(name, function() { return invoker.apply(this, arguments); |