Resolve GCC 9.1.0 noexcept warning

This commit is contained in:
James Beach
2019-05-30 20:13:52 +01:00
committed by Howard Hinnant
parent 46ccd69c9c
commit 1f5c192f4a

View File

@@ -95,9 +95,9 @@ private:
U& operator=(const pair& x);
} u;
std::chrono::hours h_{0};
std::chrono::minutes m_{0};
std::chrono::seconds s_{0};
std::chrono::hours h_{};
std::chrono::minutes m_{};
std::chrono::seconds s_{};
tz zone_{tz::local};
public: