Work around Pages issue

This commit is contained in:
Herb Sutter
2024-02-15 10:23:44 -10:00
parent 786c7ba95c
commit 7c0307bd4b

View File

@@ -5649,7 +5649,7 @@ A class with members that all have default constructors implicitly gets a defaul
vector<int> 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: