From 156bdf8bc6afc0f962d02594430567690376f947 Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Mon, 3 Jul 2017 16:41:09 -0400 Subject: [PATCH] Remove #ifdef in time_of_day * Workaround for MSVC no longer needed. --- date.h | 9 --------- 1 file changed, 9 deletions(-) diff --git a/date.h b/date.h index e0f5cef..abd7646 100644 --- a/date.h +++ b/date.h @@ -4081,7 +4081,6 @@ class time_of_day { using base = detail::time_of_day_storage; public: -#if !(defined(_MSC_VER) && !defined(__clang__)) CONSTCD11 time_of_day() NOEXCEPT = default; CONSTCD11 explicit time_of_day(Duration since_midnight) NOEXCEPT @@ -4093,14 +4092,6 @@ public: explicit time_of_day(Arg0&& arg0, Arg1&& arg1, Args&& ...args) NOEXCEPT : base(std::forward(arg0), std::forward(arg1), std::forward(args)...) {} -#else - // MS cl compiler workaround. - template - CONSTCD11 - explicit time_of_day(Args&& ...args) NOEXCEPT - : base(std::forward(args)...) - {} -#endif }; template