diff --git a/include/date/date.h b/include/date/date.h index 96cdc95..b6dd7b5 100644 --- a/include/date/date.h +++ b/include/date/date.h @@ -1367,7 +1367,7 @@ trunc(const std::chrono::time_point& tp) // day -CONSTCD11 inline day::day(unsigned d) NOEXCEPT : d_(static_cast(d)) {} +CONSTCD11 inline day::day(unsigned d) NOEXCEPT : d_(static_cast(d)) {} CONSTCD14 inline day& day::operator++() NOEXCEPT {++d_; return *this;} CONSTCD14 inline day day::operator++(int) NOEXCEPT {auto tmp(*this); ++(*this); return tmp;} CONSTCD14 inline day& day::operator--() NOEXCEPT {--d_; return *this;}