Compiler Error C2437
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Compiler Error C2437.
identifier' : already initialized
An object can be initialized only once.
The following sample generates C2437:
// C2437.cpp
// compile with: /c
class A {
public:
A(int i) {}
};
class B : A {
B() : A(1), A(2) {} // C2437
B() : A(1) {} // OK
};
Show: