Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
redefinition of formal parameter 'identifier'
A formal parameter to a function is redeclared within the function body. To resolve the error, remove the redefinition.
The following sample generates C2082:
// C2082.cpp
void func(int num1) {
int num1; // C2082
int num2; // OK
auto lambda1 = [](int num1){ int num1; }; // C2082
auto lambda2 = [](int num1){ int num2; }; // OK
}