Is it possible to bind arguments to a function template with (boost) bind?
// Define a template function (just a silly example) template
It seems to work if you create a function reference:
int (&fun)(int, int) = FCall2Templ; int res2 = boost::bind(fun, 42, 56)();
Or:
typedef int (&IntFun)(int, int); int res3 = boost::bind(IntFun(FCall2Templ), 42, 56)();
(Tested on GCC)