From 7c0307bd4b137a2b06ea9f9b5723d957d3e69d89 Mon Sep 17 00:00:00 2001 From: Herb Sutter Date: Thu, 15 Feb 2024 10:23:44 -1000 Subject: [PATCH] Work around Pages issue --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index d7d6737..5263cf0 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -5649,7 +5649,7 @@ A class with members that all have default constructors implicitly gets a defaul vector v; }; - X x; // means X{{}, {}}; that is the empty string and the empty vector + X x; // means X{ { }, { } }; that is the empty string and the empty vector Beware that built-in types are not properly default constructed: