Compiler Error C2869 (Windows CE 5.0)

Send Feedback

'name' : has already been defined to be a namespace

You cannot reuse a name already used as a namespace.

The following example shows how this error might occur.

namespace A { int i; };

class A { // error C2869, A is already used
};

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.