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 C2907

explicit specialization; 'declaration' is not a member of a class template

Code attempts explicit specialization of a static data member of a non-template class.

Example

class X {
   static int data;
};

template<> int X::data=0; // error