'identifier': 'const/volatile' 'this' ポインターはコンストラクター/デストラクターに対して無効です
コンストラクターまたはデストラクターは、constまたはvolatile宣言できません。
例
次の例では C2583 が生成されます。
// C2583.cpp
// compile with: /c
struct S
{
S() const {} // C2583
// Try the following line instead:
// S() {}
};