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