'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() { }