Compiler Error C2611
'token' : illegal following '~' (expected identifier)
The token is not an identifier.
The following sample generates C2611:
// C2611.cpp
// compile with: /c
class C {
C::~operator int(); // C2611
~C(); // OK
};
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
'token' : illegal following '~' (expected identifier)
The token is not an identifier.
The following sample generates C2611:
// C2611.cpp
// compile with: /c
class C {
C::~operator int(); // C2611
~C(); // OK
};