v8toolkit icon indicating copy to clipboard operation
v8toolkit copied to clipboard

class parser tries to wrap functions with non-type template values

Open xaxxon opened this issue 8 years ago • 0 comments

Can't compile a function template, it needs to be an actual function

add_static_method("something", &MyClass::static_templated_function); <== can't work, must be:

add_static_method("something", &MyClass::static_templated_function<5>);

Should grab default if available but otherwise either skip it or error automatically

xaxxon avatar Sep 20 '17 22:09 xaxxon