From fcba85fb48f9209573fea2aa84f49e9272f8214d Mon Sep 17 00:00:00 2001 From: hsutter Date: Thu, 7 Mar 2019 11:51:28 -0800 Subject: [PATCH] Closes #1332 --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 15027fb..c2036c6 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -8486,7 +8486,7 @@ And, talking about "invisible", this code produced no output: Wrap a `union` in a class together with a type field. -The soon-to-be-standard `variant` type (to be found in ``) does that for you: +The C++17 `variant` type (found in ``) does that for you: variant v; v = 123; // v holds an int