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 C2977

'identifier' : too many template arguments

A template has too many actual arguments. Check the template declaration to find the correct number of template parameters.

Example

template<class T, int i> class MyClass {};
template MyClass< int , 1, 1 >;  // error