I am trying to write a template function that accepts a std::function
which depends on the template arguments. Unfortunately the compiler is not capable of correctly deucing the arguments to the std::function
. Here some simple example code:
#include <iostream>
#include <functional>
using namespace std;
void DoSomething( unsigned ident, unsigned param )
{
cout << "DoSomething called, ident = " << ident << ", param = " << param << "
";
}
template < typename Ident, typename Param >
void CallFunc( Ident ident, Param param, std::function< void ( Ident, Param ) > op )
{
op( ident, param );
}
int main()
{
unsigned id(1);
unsigned param(1);
// The following fails to compile
// CallFunc( id, param, DoSomething );
// this is ok
std::function< void ( unsigned, unsigned ) > func( DoSomething );
CallFunc( id, param, func );
return 0;
}
If I call the template with the following:
CallFunc( id, param, DoSomething );
I get the following errors:
function-tpl.cpp:25: error: no matching function for call to CallFunc(unsigned int&, unsigned int&, void (&)(unsigned int, unsigned int))
If I explicitly create a std::function of the correct type (or cast it) the problem goes away:
std::function< void ( unsigned, unsigned ) > func( DoSomething );
CallFunc( id, param, func );
How would I code this so that the explicit temporary is not needed?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…