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 Warning (level 4) C4665

C++ language change: assuming 'declaration' is an explicit specialization of a function template

The compiler assumes that the definition of a non-template function is an explicit specialization of the function template.

Example

template<class T> void f(T) {};
void f(int) {};   // assumes the user means 
            // template<> void f(int);