diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index aa1f0df..edaa9cb 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -4619,7 +4619,7 @@ A class with members that all have default constructors implicitly gets a defaul struct X { string s; - vector v; + vector v; }; X x; // means X{{}, {}}; that is the empty string and the empty vector