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 C2875

using-declaration causes a multiple declaration of 'class::identifier'

The declaration causes the same item to be defined twice.

Example

class A {
public:
   int z;
};

class B : public A {
   using A::z;
   using A::z; // C2875, A::z defined more than once
};