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.
"name" : ogiltig explicit instansiering
Anmärkningar
Kompilatorn upptäckte en oformaterad explicit instansiering.
Example
I följande exempel genereras C3413:
// C3413.cpp
template
class MyClass {}; // C3413
Möjlig lösning:
// C3413b.cpp
// compile with: /c
template <class T>
class MyClass {};
template <>
class MyClass<int> {};