NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Error C2437

'identifier' : already initialized

An object can be initialized only once. The following sample generates C2437:

class A {
public:
   A(int i) {
   }
};

class B : A {
   B() : A(1), A(2) {   // C2437
   // try ..
   // B() : A(1) {
   }
};

void main() {
}