[ERROR]
The specified member function was not declared in the class/structure for the given parameters.
class A {
void f(int i);
};
void A::f(int i, int i) { // error
}
Check the parameter lists of the member function declarations in the class declaration and the member function declarations/definitions outside the class declaration.