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 Warning (level 1) C4385

text the 'identifier' in base 'base'

This warning provides additional information about an ambiguous class hierarchy reported in error C2385. A member of a derived class is declared in more than one base class. The following sample generates C4385:

struct A { 
   int x; 
};

struct B { 
   int x; 
};

struct C : A, B {
};

struct D : C {
   C::x;   // C4385, delete one of the declarations for x to resolve
};

void main() {   
}