Can't convert function pointer argument - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T22:51:09Z http://stackoverflow.com/feeds/question/706908 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/706908/cant-convert-function-pointer-argument 0 Can't convert function pointer argument heeen 2009-04-01T18:55:38Z 2009-04-01T20:27:45Z <p>The error I'm getting:</p> <pre><code>error C2664: 'v8::FunctionTemplate::New' : cannot convert parameter 1 from 'v8::Handle&lt;T&gt; (__cdecl *)(const v8::Arguments &amp;)' to 'v8::InvocationCallback' </code></pre> <p>Relevant definitions:</p> <pre><code>typedef Handle&lt;Value&gt; (*InvocationCallback)(const Arguments&amp; args); template&lt;class C&gt; class V8ScriptClass { public: template&lt;class C, typename Rtype, typename Ptype1, Rtype (C::*FuncPtr)(Ptype1)&gt; void RegisterFunc(const char* const scriptname) { objtemplate-&gt;Set( v8::String::New(scriptname), v8::FunctionTemplate::New( V8ScriptClass&lt;C&gt;::RelayCallback&lt;C, Rtype, Ptype1, FuncPtr&gt; )); }; template&lt;typename Rtype, typename Ptype1, Rtype (*FuncPtr)(Ptype1 param1)&gt; static v8::Handle&lt;v8::Value&gt; RelayCallback(const v8::Arguments&amp; args) { std::cerr&lt;&lt;__FUNCTION__&lt;&lt;std::endl; v8::HandleScope handle_scope; return handle_scope.Close(toJSType( ((FuncPtr)(toCType(args[0]))) )); }; </code></pre> <p>Looks to me like the typedef and the actual function signature are identical.</p> <p>edit: forgot one declaration:</p> <pre><code>class EXPORT FunctionTemplate : public Template { public: /** Creates a function template.*/ static Local&lt;FunctionTemplate&gt; New( InvocationCallback callback = 0, Handle&lt;Value&gt; data = Handle&lt;Value&gt;(), Handle&lt;Signature&gt; signature = Handle&lt;Signature&gt;()); </code></pre> http://stackoverflow.com/questions/706908/cant-convert-function-pointer-argument/707204#707204 1 Answer by heeen for Can't convert function pointer argument heeen 2009-04-01T20:27:45Z 2009-04-01T20:27:45Z <p>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.</p>