forked from HowardHinnant/date
Reduce technology down to what VS can handle.
This commit is contained in:
4
date.h
4
date.h
@@ -3391,7 +3391,7 @@ inline
|
|||||||
typename std::enable_if
|
typename std::enable_if
|
||||||
<
|
<
|
||||||
!std::chrono::treat_as_floating_point<typename Duration::rep>::value &&
|
!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&
|
, std::ostream&
|
||||||
>::type
|
>::type
|
||||||
operator<<(std::ostream& os,
|
operator<<(std::ostream& os,
|
||||||
@@ -3406,7 +3406,7 @@ inline
|
|||||||
typename std::enable_if
|
typename std::enable_if
|
||||||
<
|
<
|
||||||
!std::chrono::treat_as_floating_point<typename Duration::rep>::value &&
|
!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&
|
, std::ostream&
|
||||||
>::type
|
>::type
|
||||||
operator<<(std::ostream& os,
|
operator<<(std::ostream& os,
|
||||||
|
Reference in New Issue
Block a user