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 C2264

'function' : error in function definition or declaration; function not called

The function cannot be called due to an incorrect definition or declaration.

Example

class C
{
public:
   operator int( int = 10 );    // incorrect declaration here
};
void main()
{
   int i;
   C c;
   i = c;                       // error
}