Compiler Error C2883 (Windows CE 5.0)

Send Feedback

'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.

The following example shows how this error might occur.

namespace A {
void z(int);
}

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

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.