Skip to content

Commit b9f41b5

Browse files
committed
missing template argument
1 parent 0b15a43 commit b9f41b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CppCoreGuidelines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4619,7 +4619,7 @@ A class with members that all have default constructors implicitly gets a defaul
46194619

46204620
struct X {
46214621
string s;
4622-
vector v;
4622+
vector<int> v;
46234623
};
46244624

46254625
X x; // means X{{}, {}}; that is the empty string and the empty vector

0 commit comments

Comments
 (0)