@@ -1092,7 +1092,7 @@ public:
1092
1092
(__no_overflow<_Period2, period>::type::den == 1 &&
1093
1093
!treat_as_floating_point<_Rep2>::value))
1094
1094
>::type* = nullptr )
1095
- : __rep_(_VSTD:: chrono::duration_cast<duration>(__d).count()) {}
1095
+ : __rep_(chrono::duration_cast<duration>(__d).count()) {}
1096
1096
1097
1097
// observer
1098
1098
@@ -1411,7 +1411,7 @@ inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
1411
1411
time_point<_Clock, _ToDuration>
1412
1412
time_point_cast (const time_point<_Clock, _Duration>& __t )
1413
1413
{
1414
- return time_point<_Clock, _ToDuration>(_VSTD:: chrono::duration_cast<_ToDuration>(__t .time_since_epoch ()));
1414
+ return time_point<_Clock, _ToDuration>(chrono::duration_cast<_ToDuration>(__t .time_since_epoch ()));
1415
1415
}
1416
1416
1417
1417
#if _LIBCPP_STD_VER > 14
@@ -1927,13 +1927,13 @@ inline constexpr weekday& weekday::operator-=(const days& __dd) noexcept
1927
1927
1928
1928
class weekday_indexed {
1929
1929
private:
1930
- _VSTD:: chrono::weekday __wd;
1930
+ chrono::weekday __wd;
1931
1931
unsigned char __idx;
1932
1932
public:
1933
1933
weekday_indexed () = default ;
1934
- inline constexpr weekday_indexed (const _VSTD:: chrono::weekday& __wdval, unsigned __idxval) noexcept
1934
+ inline constexpr weekday_indexed (const chrono::weekday& __wdval, unsigned __idxval) noexcept
1935
1935
: __wd{__wdval}, __idx(__idxval) {}
1936
- inline constexpr _VSTD:: chrono::weekday weekday () const noexcept { return __wd; }
1936
+ inline constexpr chrono::weekday weekday () const noexcept { return __wd; }
1937
1937
inline constexpr unsigned index () const noexcept { return __idx; }
1938
1938
inline constexpr bool ok () const noexcept { return __wd.ok () && __idx >= 1 && __idx <= 5 ; }
1939
1939
};
@@ -1949,11 +1949,11 @@ bool operator!=(const weekday_indexed& __lhs, const weekday_indexed& __rhs) noex
1949
1949
1950
1950
class weekday_last {
1951
1951
private:
1952
- _VSTD:: chrono::weekday __wd;
1952
+ chrono::weekday __wd;
1953
1953
public:
1954
- explicit constexpr weekday_last (const _VSTD:: chrono::weekday& __val) noexcept
1954
+ explicit constexpr weekday_last (const chrono::weekday& __val) noexcept
1955
1955
: __wd{__val} {}
1956
- constexpr _VSTD:: chrono::weekday weekday () const noexcept { return __wd; }
1956
+ constexpr chrono::weekday weekday () const noexcept { return __wd; }
1957
1957
constexpr bool ok () const noexcept { return __wd.ok (); }
1958
1958
};
1959
1959
0 commit comments