mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2025-12-17 20:54:41 +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 {
|
struct X {
|
||||||
string s;
|
string s;
|
||||||
vector v;
|
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
|
||||||
|
|||||||
Reference in New Issue
Block a user