C1016: Parameter redeclaration not permitted

[ERROR]

Description

A parameter object was declared with the same name as another parameter object of the same function.

Example
  void f(int i, int i);

  
Tips

Choose another name for the parameter object with the already used name.