Белешка
Приступ овој страници захтева ауторизацију. Можете покушати да се пријавите или промените директоријуме.
Приступ овој страници захтева ауторизацију. Можете покушати да промените директоријуме.
explicit specialization; 'specialization' has already been defined
Remarks
Duplicate explicit specializations are not allowed. For more information, see Explicit Specialization of Function Templates.
Example
The following example generates C2766:
// C2766.cpp
// compile with: /c
template<class T>
struct A {};
template<>
struct A<int> {};
template<>
struct A<int> {}; // C2766
// try the following line instead
// struct A<char> {};