From 976ee508a4a19368f30b043eecbf8ba6f8120620 Mon Sep 17 00:00:00 2001 From: hsutter Date: Sat, 27 Apr 2019 07:45:45 -0700 Subject: [PATCH] Fixed typo in ES.22 --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 06cce5b..4000fa7 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -10644,7 +10644,7 @@ For initializers of moderate complexity, including for `const` variables, consid ##### Enforcement -* Flag declarations with default initialization that are assigned to before they are first read. +* Flag declarations with default initialization that are not assigned to before they are first read. * Flag any complicated computation after an uninitialized variable and before its use. ### ES.23: Prefer the `{}` initializer syntax