missing template argument

This commit is contained in:
Thibault Kruse 2016-08-11 17:05:03 +02:00
parent 0b15a43c54
commit b9f41b5cd0

View File

@ -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