v8toolkit
v8toolkit copied to clipboard
class parser tries to wrap functions with non-type template values
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