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 C2883

'name' : local function declaration conflicts with 'identifier' introduced by using-declaration

You tried to define a function more than once. The first definition was made from a namespace with a using declaration. The second was a local definition.

Example

namespace A {
   void z(int);
}

void f() {
   using A::z;
   void z(int); // error C2883, z is already defined
}