Not
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Specialisering: explicit specialisering kräver "mall <>"
Anmärkningar
Du måste använda den nya syntaxen för explicit specialisering av mallar.
Example
I följande exempel genereras C2906:
// C2906.cpp
// compile with: /c
template<class T> class X{}; // primary template
class X<int> { } // C2906
template<> class X<int> { }; // new syntax