NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Error C2908

explicit specialization; 'template' has already been specialized from the primary template

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

Example

template<class T> class X {};

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

template<> class X<int> {}   //explicit specialization, error