We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc68352 commit 0b15a43Copy full SHA for 0b15a43
CppCoreGuidelines.md
@@ -4945,7 +4945,7 @@ To avoid repetition and accidental differences.
4945
int y;
4946
public:
4947
Date(int ii, Month mm, year yy)
4948
- :i{ii}, m{mm} y{yy}
+ :i{ii}, m{mm}, y{yy}
4949
{ if (!valid(i, m, y)) throw Bad_date{}; }
4950
4951
Date(int ii, Month mm)
@@ -4964,7 +4964,7 @@ The common action gets tedious to write and may accidentally not be common.
4964
4965
4966
Date2(int ii, Month mm, year yy)
4967
4968
4969
4970
Date2(int ii, Month mm)
0 commit comments