diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 8dfd021fe..2649ce033 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -1123,7 +1123,7 @@ Messy, low-level code breeds more such code. } This is low-level, verbose, and error-prone. -For example, we "forgot" to test for memory exhaustion. +For example, we "forgot" to test for memory exhaustion and assign new value to `sz`. Instead, we could use `vector`: vector v;