Can't convert function pointer argument - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T22:51:09Zhttp://stackoverflow.com/feeds/question/706908http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/706908/cant-convert-function-pointer-argument0Can't convert function pointer argumentheeen2009-04-01T18:55:38Z2009-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<T> (__cdecl *)(const v8::Arguments &)' to 'v8::InvocationCallback'
</code></pre>
<p>Relevant definitions:</p>
<pre><code>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]))) ));
};
</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<FunctionTemplate> New(
InvocationCallback callback = 0,
Handle<Value> data = Handle<Value>(),
Handle<Signature> signature = Handle<Signature>());
</code></pre>
http://stackoverflow.com/questions/706908/cant-convert-function-pointer-argument/707204#7072041Answer by heeen for Can't convert function pointer argumentheeen2009-04-01T20:27:45Z2009-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>