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 C2805

binary 'operator operator' has too few parameters

The binary operator has no parameters.

Example

class X

{
public:
   X operator< ( void );  // error, must take one parameter
   X operator< ( X );     // OK
};