mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2025-12-17 12:44:42 +03:00
missing template argument
This commit is contained in:
@@ -4619,7 +4619,7 @@ A class with members that all have default constructors implicitly gets a defaul
|
||||
|
||||
struct X {
|
||||
string s;
|
||||
vector v;
|
||||
vector<int> v;
|
||||
};
|
||||
|
||||
X x; // means X{{}, {}}; that is the empty string and the empty vector
|
||||
|
||||
Reference in New Issue
Block a user