Compiler Error C2511
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 C2511.
identifier' : overloaded member function not found in 'class'
No version of the function is declared with the specified parameters. Possible causes:
Wrong parameters passed to function.
Parameters passed in wrong order.
Incorrect spelling of parameter names.
The following sample generates C2511:
// C2511.cpp
// compile with: /c
class C {
int c_2;
int Func(char *, char *);
};
int C::Func(char *, char *, int i) { // C2511
// try the following line instead
// int C::Func(char *, char *) {
return 0;
}
Show: