0 out of 1 rated this helpful - Rate this topic

Compiler Error C2908

Error Message

explicit specialization; 'template' has already been instantiated

A specialization of the primary template occurs before the explicit specialization.

The following sample generates C2908:

// C2908.cpp
// compile with: /c
template<class T> class X {};

void f() {
X<int> x;   //specialization and instantiation
            //of X<int>
}

template<> class X<int> {}  // C2908, explicit specialization
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
Advertisement