From 5e799d7992c7040285c0b7780fe0dfe793695196 Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Thu, 12 May 2016 10:04:39 -0400 Subject: [PATCH] MSC doesn't do inheriting constructors yet --- date.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/date.h b/date.h index f88e74c..7922d57 100644 --- a/date.h +++ b/date.h @@ -3657,14 +3657,14 @@ class time_of_day { using base = detail::time_of_day_storage; public: -#if !defined(_MSC_VER) || (_MSC_VER >= 1900) +#ifndef _MSC_VER using base::base; #else template explicit time_of_day(Args&& ...args) : base(std::forward(args)...) {} -#endif // !defined(_MSC_VER) || (_MSC_VER >= 1900) +#endif // _MSC_VER }; template