tmp/tmpheuzga46/{from.md → to.md}
RENAMED
|
@@ -6,14 +6,14 @@ values of `time_point` advance at a steady rate relative to real time.
|
|
| 6 |
That is, the clock may not be adjusted.
|
| 7 |
|
| 8 |
``` cpp
|
| 9 |
class steady_clock {
|
| 10 |
public:
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
static constexpr bool is_steady = true;
|
| 16 |
|
| 17 |
static time_point now() noexcept;
|
| 18 |
};
|
| 19 |
```
|
|
|
|
| 6 |
That is, the clock may not be adjusted.
|
| 7 |
|
| 8 |
``` cpp
|
| 9 |
class steady_clock {
|
| 10 |
public:
|
| 11 |
+
using rep = unspecified;
|
| 12 |
+
using period = ratio<unspecified, unspecified{}>;
|
| 13 |
+
using duration = chrono::duration<rep, period>;
|
| 14 |
+
using time_point = chrono::time_point<unspecified, duration>;
|
| 15 |
static constexpr bool is_steady = true;
|
| 16 |
|
| 17 |
static time_point now() noexcept;
|
| 18 |
};
|
| 19 |
```
|