File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -44,13 +44,13 @@ auto utc_timestamp() -> std::tm const & {
4444}
4545
4646// global data - would like to do something about that.
47- static std::string const build_timestamp{format_time (" Revised %Y-%m-%d at %H:%M:%S UTC\n " , utc_timestamp ())};
47+ std::string const build_timestamp{format_time (" Revised %Y-%m-%d at %H:%M:%S UTC\n " , utc_timestamp ())};
4848
49- static std::string
const maintainer_email{
" [email protected] " };
49+ std::string
const maintainer_email{
" [email protected] " };
5050
51- static std::string const maintainer_name{" Jonathan Wakely" };
51+ std::string const maintainer_name{" Jonathan Wakely" };
5252
53- static std::string const is14882_docno{" ISO/IEC IS 14882:2024(E)" };
53+ std::string const is14882_docno{" ISO/IEC IS 14882:2024(E)" };
5454
5555struct order_by_first_tag {
5656 bool operator ()(lwg::issue const & x, lwg::issue const & y) const noexcept {
Original file line number Diff line number Diff line change 1010#include < algorithm>
1111
1212namespace {
13- static constexpr char const * LWG_ACTIVE {" lwg-active.html" };
14- static constexpr char const * LWG_CLOSED {" lwg-closed.html" };
15- static constexpr char const * LWG_DEFECTS{" lwg-defects.html" };
13+ constexpr char const * LWG_ACTIVE {" lwg-active.html" };
14+ constexpr char const * LWG_CLOSED {" lwg-closed.html" };
15+ constexpr char const * LWG_DEFECTS{" lwg-defects.html" };
1616}
1717
1818auto lwg::filename_for_status (std::string_view stat) -> std::string_view {
You can’t perform that action at this time.
0 commit comments