From 9f2d2645ff95d146a8f57f22d38ba0e10a56e8bb Mon Sep 17 00:00:00 2001 From: Sam Bristow Date: Tue, 26 Jul 2016 16:56:42 +1200 Subject: [PATCH] Remove rogue comma from example --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 2a59af1..77860cb 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -7458,7 +7458,7 @@ Such code is not uncommon in code written before there were convenient alternati Use `constexpr` values instead. For example: - constexpr int red = 0x,FF0000; + constexpr int red = 0xFF0000; constexpr short scale = 4; constexpr bool signed = true;