Fix comment stating incorrect assigned variable (#1342)

This commit is contained in:
Amir Livneh
2019-02-26 17:27:48 -05:00
committed by Sergey Zubkov
parent 8c141fcfa5
commit a95daa781e

View File

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