From a5a4d0b4a21c7eacee268eb540e2f97d1867c96b Mon Sep 17 00:00:00 2001 From: syntroniks Date: Thu, 28 Jan 2021 12:57:07 -0600 Subject: [PATCH] update Enum.7 note with consistent capitalization (#1739) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 604694b..7442efd 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -8947,7 +8947,7 @@ Specifying the underlying type is necessary in forward declarations of enumerati // .... - enum flags : char { /* ... */ }; + enum Flags : char { /* ... */ }; ##### Enforcement