Merk
Tilgang til denne siden krever autorisasjon. Du kan prøve å logge på eller endre kataloger.
Tilgang til denne siden krever autorisasjon. Du kan prøve å endre kataloger.
'explicit specialization' : explicit specialization is using partial specialization syntax, use template <> instead
Remarks
An explicit specialization was ill formed.
Example
The following example generates C3211:
// C3211.cpp
// compile with: /LD
template<class T>
struct s;
template<class T>
// use the following line instead
// template<>
struct s<int>{}; // C3211