From c0a2efdfe86656e100121976fdf0a8b01b62a4a2 Mon Sep 17 00:00:00 2001 From: hsutter Date: Mon, 18 Jun 2018 11:40:39 -0700 Subject: [PATCH] Closes #1218 --- CppCoreGuidelines.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 5122039..442379e 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -8566,9 +8566,9 @@ The default is the easiest to read and write. enum class Direction : char { n, s, e, w, ne, nw, se, sw }; // underlying type saves space - enum class Web_color : int { red = 0xFF0000, - green = 0x00FF00, - blue = 0x0000FF }; // underlying type is redundant + enum class Web_color : int32_t { red = 0xFF0000, + green = 0x00FF00, + blue = 0x0000FF }; // underlying type is redundant ##### Note