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 C2583

'identifier' : 'const/volatile' 'this' pointer is illegal for constructors/destructors

A constructor or destructor is declared const or volatile. This is not allowed. The following sample generates C2583:

class A {
   public:
      int i;
      A() const;   // C2583, remove const to resolve  
};

void main() {
}