From a8d8776ec72c69a797e5ded1c089aee92e0f3890 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 2703dad..6761b6d 100644 --- a/date.h +++ b/date.h @@ -3763,14 +3763,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