Fix comment stating incorrect assigned variable (#1342)

pull/1357/head
Amir Livneh 7 years ago committed by Sergey Zubkov
parent 8c141fcfa5
commit a95daa781e

@ -10374,7 +10374,7 @@ Reuse of a member name as a local variable can also be a problem:
if (x) {
int m = 9;
// ...
m = 99; // assign to member
m = 99; // assign to local variable
// ...
}
}

Loading…
Cancel
Save