Skip to content

Commit aa5e3be

Browse files
committed
[libc++] s/_VSTD::chrono/chrono/g. NFCI.
1 parent 0b8da5f commit aa5e3be

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

libcxx/include/chrono

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1092,7 +1092,7 @@ public:
10921092
(__no_overflow<_Period2, period>::type::den == 1 &&
10931093
!treat_as_floating_point<_Rep2>::value))
10941094
>::type* = nullptr)
1095-
: __rep_(_VSTD::chrono::duration_cast<duration>(__d).count()) {}
1095+
: __rep_(chrono::duration_cast<duration>(__d).count()) {}
10961096

10971097
// observer
10981098

@@ -1411,7 +1411,7 @@ inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
14111411
time_point<_Clock, _ToDuration>
14121412
time_point_cast(const time_point<_Clock, _Duration>& __t)
14131413
{
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()));
14151415
}
14161416

14171417
#if _LIBCPP_STD_VER > 14
@@ -1927,13 +1927,13 @@ inline constexpr weekday& weekday::operator-=(const days& __dd) noexcept
19271927

19281928
class weekday_indexed {
19291929
private:
1930-
_VSTD::chrono::weekday __wd;
1930+
chrono::weekday __wd;
19311931
unsigned char __idx;
19321932
public:
19331933
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
19351935
: __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; }
19371937
inline constexpr unsigned index() const noexcept { return __idx; }
19381938
inline constexpr bool ok() const noexcept { return __wd.ok() && __idx >= 1 && __idx <= 5; }
19391939
};
@@ -1949,11 +1949,11 @@ bool operator!=(const weekday_indexed& __lhs, const weekday_indexed& __rhs) noex
19491949

19501950
class weekday_last {
19511951
private:
1952-
_VSTD::chrono::weekday __wd;
1952+
chrono::weekday __wd;
19531953
public:
1954-
explicit constexpr weekday_last(const _VSTD::chrono::weekday& __val) noexcept
1954+
explicit constexpr weekday_last(const chrono::weekday& __val) noexcept
19551955
: __wd{__val} {}
1956-
constexpr _VSTD::chrono::weekday weekday() const noexcept { return __wd; }
1956+
constexpr chrono::weekday weekday() const noexcept { return __wd; }
19571957
constexpr bool ok() const noexcept { return __wd.ok(); }
19581958
};
19591959

0 commit comments

Comments
 (0)