From e1b17ec9a53d7608f4ef293ada2bf9d6fcc2d98f Mon Sep 17 00:00:00 2001 From: Xavier1113 Date: Mon, 7 Aug 2023 11:06:08 -0700 Subject: [PATCH] C.181 Fix missing type specifier (#2117) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 94876f8..9c7391d 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -8871,7 +8871,7 @@ The C++17 `variant` type (found in ``) does that for you: v = 123; // v holds an int int x = get(v); v = 123.456; // v holds a double - w = get(v); + double w = get(v); ##### Enforcement