From a95daa781e0a74bff32449a0060969e6ab3e2d9b Mon Sep 17 00:00:00 2001 From: Amir Livneh Date: Tue, 26 Feb 2019 17:27:48 -0500 Subject: [PATCH] Fix comment stating incorrect assigned variable (#1342) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index f1f1955..f576412 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -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 // ... } }