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