'identifier' : overloaded member function not found in 'class'
No version of the function is declared with the specified parameters.
Possible causes
The following sample generates C2511:
class C { int c_2; int Func(char *, char *); }; int C::Func(char *, char *, int i) { // C2511 // try ... // int C::Func(char *, char *) { return 0; } void main() { }