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!

Fatal Error C1202

recursive type or function dependency context too complex

A template definition was recursive or exceeded complexity limits. For example:

template<int n> class Factorial : public Factorial<n-1> 
{ 
public:
    operator int () 
    { 
        return Factorial <n-1>::operator int () * n; 
    }
};

Factorial<7> facSeven; // error on this line