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 C2917

'name' : invalid template-parameter

A template parameter list contains an identifier that was not a template parameter.

Example

template<class T> class Vector { void sort(); };

template<class T> void Vector<C>::sort() // error: 'C'
{
}