Compiler Error C2535
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Compiler Error C2535.
identifier' : member function already defined or declared
This error could be caused by using the same formal parameter list in more than one definition or declaration of an overloaded function.
If you get C2535 because of the Dispose function, see Destructors and finalizers for more information.
If you are compiling an ATL project, see Knowledge Base article Q241852.
The following sample generates C2535:
// C2535.cpp
// compile with: /c
class C {
public:
void func(); // forward declaration
void func() {} // C2535
};
Show: