Compiler Error C2898
'declaration' : member function templates cannot be virtual
The following sample generates C2898:
// C2898.cpp
// compile with: /c
class X {
public:
template<typename T> virtual void f(T t) {} // C2898
};
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
'declaration' : member function templates cannot be virtual
The following sample generates C2898:
// C2898.cpp
// compile with: /c
class X {
public:
template<typename T> virtual void f(T t) {} // C2898
};