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 & {
44
44
}
45
45
46
46
// 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 ())};
48
48
49
- static std::string
const maintainer_email{
" [email protected] " };
49
+ std::string
const maintainer_email{
" [email protected] " };
50
50
51
- static std::string const maintainer_name{" Jonathan Wakely" };
51
+ std::string const maintainer_name{" Jonathan Wakely" };
52
52
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)" };
54
54
55
55
struct order_by_first_tag {
56
56
bool operator ()(lwg::issue const & x, lwg::issue const & y) const noexcept {
Original file line number Diff line number Diff line change 10
10
#include < algorithm>
11
11
12
12
namespace {
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" };
16
16
}
17
17
18
18
auto lwg::filename_for_status (std::string_view stat) -> std::string_view {
You can’t perform that action at this time.
0 commit comments