@@ -18,7 +18,7 @@ constexpr std::string_view LWG_DEFECTS{"lwg-defects.html"};
1818
1919auto lwg::filename_for_status (std::string_view stat) -> std::string_view {
2020 // Tentative issues are always active
21- if (is_tentative (stat)) {
21+ if (is_tentative (stat)) {
2222 return LWG_ACTIVE;
2323 }
2424
@@ -78,21 +78,21 @@ auto lwg::is_tentative(std::string_view stat) -> bool {
7878}
7979
8080auto lwg::is_assigned_to_another_group (std::string_view stat) -> bool {
81- for ( auto s : {" Core" , " EWG" , " LEWG" , " SG1" , " SG9" , " SG16" }) {
82- if (s == stat) return true ;
81+ for ( auto s : {" Core" , " EWG" , " LEWG" , " SG1" , " SG9" , " SG16" }) {
82+ if (s == stat) return true ;
8383 }
8484 return false ;
8585}
8686
8787auto lwg::is_not_resolved (std::string_view stat) -> bool {
8888 if (is_assigned_to_another_group (stat)) return true ;
89- for ( auto s : {" Deferred" , " New" , " Open" , " Review" }) { if (s == stat) return true ; }
89+ for ( auto s : {" Deferred" , " New" , " Open" , " Review" }) { if (s == stat) return true ; }
9090 return false ;
9191}
9292
9393auto lwg::is_votable (std::string_view stat) -> bool {
9494 stat = remove_tentatively (stat);
95- for ( auto s : {" Immediate" , " Voting" }) { if (s == stat) return true ; }
95+ for ( auto s : {" Immediate" , " Voting" }) { if (s == stat) return true ; }
9696 return false ;
9797}
9898
@@ -173,7 +173,7 @@ auto lwg::get_status_priority(std::string_view stat) noexcept -> std::ptrdiff_t
173173 auto const i = std::ranges::find (status_priority, stat);
174174#if !defined(DEBUG_SUPPORT)
175175 // Diagnose when unknown status strings are passed
176- if (std::end (status_priority) == i) {
176+ if (std::end (status_priority) == i) {
177177 std::cout << " Unknown status: " << stat << std::endl;
178178 }
179179#endif
0 commit comments