नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
redefinition of formal parameter 'identifier'
Remarks
A formal parameter to a function is redeclared within the function body. To resolve the error, remove the redefinition.
Example
The following example 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
}