File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff 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" ,
Original file line number Diff line number Diff 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"
You can’t perform that action at this time.
0 commit comments