Kompilatorfel C3211

"Explicit specialisering": explicit specialisering använder syntax för partiell specialisering, använd mall <> istället.

Anmärkningar

En explicit specialisering var dåligt utformad.

Example

I följande exempel genereras C3211:

// C3211.cpp
// compile with: /LD
template<class T>
struct s;

template<class T>
// use the following line instead
// template<>
struct s<int>{};   // C3211