Reduce technology down to what VS can handle.

This commit is contained in:
Howard Hinnant
2015-07-28 11:00:53 -04:00
parent 51864f56c1
commit 07361f9d86

4
date.h
View File

@@ -3391,7 +3391,7 @@ inline
typename std::enable_if
<
!std::chrono::treat_as_floating_point<typename Duration::rep>::value &&
Duration{1} < days{1}
std::ratio_less<typename Duration::period, days::period>::value
, std::ostream&
>::type
operator<<(std::ostream& os,
@@ -3406,7 +3406,7 @@ inline
typename std::enable_if
<
!std::chrono::treat_as_floating_point<typename Duration::rep>::value &&
Duration{1} >= days{1}
!std::ratio_less<typename Duration::period, days::period>::value
, std::ostream&
>::type
operator<<(std::ostream& os,