From 1f5c192f4a2be7af78d224f37aaaa2726714bb54 Mon Sep 17 00:00:00 2001 From: James Beach Date: Thu, 30 May 2019 20:13:52 +0100 Subject: [PATCH] Resolve GCC 9.1.0 noexcept warning --- include/date/tz_private.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/date/tz_private.h b/include/date/tz_private.h index d54fe70..798fcf5 100644 --- a/include/date/tz_private.h +++ b/include/date/tz_private.h @@ -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: