У меня проблема с передачей указателей на функции-члены в шаблонную функцию-член на gcc. Кто-нибудь знает, как изменить код ниже, чтобы заставить gcc принять то, что я пытаюсь сделать?
class Foo
{
public:
template <class C, class R>
void Execute(R(typename C::*memFn)())
{
}
};
Я получаю следующие ошибки при попытке скомпилировать код:
test.cpp:40: error: 'memFn' was not declared in this scope
test.cpp:40: error: expected primary-expression before '(' token
test.cpp:40: error: expected identifier before '*' token
test.cpp:40: error: expected '(' before '*' token
test.cpp:40: error: 'memFn' was not declared in this scope
test.cpp:40: error: variable or field 'Execute' declared void
Используемая мной версия gcc - 4.4.2.
Большое спасибо за помощь!