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
};
เบราว์เซอร์นี้ไม่ได้รับการสนับสนุนอีกต่อไป
อัปเกรดเป็น Microsoft Edge เพื่อใช้ประโยชน์จากคุณลักษณะล่าสุด เช่น การอัปเดตความปลอดภัยและการสนับสนุนด้านเทคนิค
'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
};