Skip to content

Commit 4a5ff4e

Browse files
committed
[time] Fix namespace for definitions in std::chrono
The previous commit ad767d3 accidentally added the wrong namespace "std" instead of "std::chrono".
1 parent 72647e7 commit 4a5ff4e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

source/utilities.tex

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17522,7 +17522,7 @@
1752217522

1752317523
\indexlibrary{\idxcode{duration}}%
1752417524
\begin{codeblock}
17525-
namespace std {
17525+
namespace std::chrono {
1752617526
template <class Rep, class Period = ratio<1>>
1752717527
class duration {
1752817528
public:
@@ -18284,7 +18284,7 @@
1828418284

1828518285
\indexlibrary{\idxcode{time_point}}%
1828618286
\begin{codeblock}
18287-
namespace std {
18287+
namespace std::chrono {
1828818288
template <class Clock, class Duration = typename Clock::duration>
1828918289
class time_point {
1829018290
public:
@@ -18638,7 +18638,7 @@
1863818638
realtime clock.
1863918639

1864018640
\begin{codeblock}
18641-
namespace std {
18641+
namespace std::chrono {
1864218642
class system_clock {
1864318643
public:
1864418644
using rep = @\seebelow@;
@@ -18707,7 +18707,7 @@
1870718707
a steady rate relative to real time. That is, the clock may not be adjusted.
1870818708

1870918709
\begin{codeblock}
18710-
namespace std {
18710+
namespace std::chrono {
1871118711
class steady_clock {
1871218712
public:
1871318713
using rep = @\unspec@;
@@ -18730,7 +18730,7 @@
1873018730
\tcode{system_clock} or \tcode{steady_clock}.
1873118731

1873218732
\begin{codeblock}
18733-
namespace std {
18733+
namespace std::chrono {
1873418734
class high_resolution_clock {
1873518735
public:
1873618736
using rep = @\unspec@;

0 commit comments

Comments
 (0)