Příklad

template <class T>  class MyClass {
public:
int fnc(T type);
int fnc(int b);
};

Řešení
Nepřetěžujte funce použitím parametrů šablony, které mohou mít v době zpracování konflikt.

template <class T>  class MyClass {
public:
int fncType(T type);
int fncInt(int b);
};