Skip to content

Commit 275e32f

Browse files
committed
Updated versions of source files (C++11 added)
1 parent 09e400b commit 275e32f

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/lists.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,7 @@ auto filename_for_status(std::string stat) -> std::string {
208208
stat = remove_qualifier(stat);
209209
return (stat == "TC1") ? LWG_DEFECTS
210210
: (stat == "CD1") ? LWG_DEFECTS
211+
: (stat == "C++11") ? LWG_DEFECTS
211212
: (stat == "WP") ? LWG_DEFECTS
212213
: (stat == "Resolved") ? LWG_DEFECTS
213214
: (stat == "DR") ? LWG_DEFECTS
@@ -437,6 +438,7 @@ struct sort_by_status {
437438
"DR",
438439
"WP",
439440
"CD1",
441+
"C++11",
440442
"TC1",
441443
"Resolved",
442444
"TRDec",

src/toc_diff.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ auto find_file(std::string const & status) -> std::string {
5656
return stat == "TC1" ? "lwg-defects.html"
5757
: stat == "CD1" ? "lwg-defects.html"
5858
: stat == "WP" ? "lwg-defects.html"
59+
: stat == "C++11" ? "lwg-defects.html"
5960
: stat == "Resolved" ? "lwg-defects.html"
6061
: stat == "DR" ? "lwg-defects.html"
6162
: stat == "TRDec" ? "lwg-defects.html"

0 commit comments

Comments
 (0)