C1074: Wrong member function definition

[ERROR]

Description

The specified member function was not declared in the class/structure for the given parameters.

Example
  class A {

  
    void f(int i);

  
  };

  
  void A::f(int i, int i) {  // error

  
  }

  
Tips

Check the parameter lists of the member function declarations in the class declaration and the member function declarations/definitions outside the class declaration.