Compiler Error C2365
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 C2365.
class member' : redefinition; previous definition was 'class member'
You attempted to redefine a class member.
The following sample generates C2365.
// C2365.cpp
// compile with: /c
class C1 {
int CFunc();
char *CFunc; // C2365, already exists as a member function
int CMem;
char *CMem(); // C2365, already exists as a data member
};
Show: