vote up 0 vote down star

The error I'm getting:

error C2664: 'v8::FunctionTemplate::New' : cannot convert parameter 1 from 'v8::Handle<T> (__cdecl *)(const v8::Arguments &)' to 'v8::InvocationCallback'

Relevant definitions:

typedef Handle<Value> (*InvocationCallback)(const Arguments& args);




template<class C> class V8ScriptClass
{
public:
    template<class C, typename Rtype, typename Ptype1, Rtype (C::*FuncPtr)(Ptype1)> 
    void RegisterFunc(const char* const scriptname)
    {
    	objtemplate->Set(
    		v8::String::New(scriptname), 
    		v8::FunctionTemplate::New(
    		V8ScriptClass<C>::RelayCallback<C, Rtype, Ptype1, FuncPtr>
    			));
    };

template<typename Rtype, typename Ptype1, Rtype (*FuncPtr)(Ptype1 param1)>
static v8::Handle<v8::Value> RelayCallback(const v8::Arguments& args)
{
	std::cerr<<__FUNCTION__<<std::endl;
	v8::HandleScope handle_scope;
	return handle_scope.Close(toJSType( ((FuncPtr)(toCType(args[0]))) ));
};

Looks to me like the typedef and the actual function signature are identical.

edit: forgot one declaration:

class EXPORT FunctionTemplate : public Template {
 public:
  /** Creates a function template.*/
  static Local<FunctionTemplate> New(
      InvocationCallback callback = 0,
      Handle<Value> data = Handle<Value>(),
      Handle<Signature> signature = Handle<Signature>());
flag

70% accept rate
Where are you using InvocationCallback? – dirkgently Apr 1 at 18:59
added the missing declaration – heeen Apr 1 at 19:07
Not just the signature (=0 is a default argument) but the actual invocation. – dirkgently Apr 1 at 19:09
look inside RegisterFunc, it's the FunctionTemplate::New constructor which takes a function pointer argument – heeen Apr 1 at 19:15
Where exactly are you getting the error? At the point of instantiation i.e. where you are using RegisterFunc? Otherwise, looks like the compiler is confused. Can you try with a typename? The RelayCallback is still of incomplete type in RegisterFunc. – dirkgently Apr 1 at 19:30
show 3 more comments

1 Answer

vote up 1 vote down check

I found the error. the RelayCallback template takes a static function pointer as argument, and I tried to instantiate it with a member function pointer. I just had to change it to a member function pointer template argument.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.