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