tmp/tmpoj4ayxsu/{from.md → to.md}
RENAMED
|
@@ -5,14 +5,14 @@ shortest tick period. `high_resolution_clock` may be a synonym for
|
|
| 5 |
`system_clock` or `steady_clock`.
|
| 6 |
|
| 7 |
``` cpp
|
| 8 |
class high_resolution_clock {
|
| 9 |
public:
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
static constexpr bool is_steady = unspecified;
|
| 15 |
|
| 16 |
static time_point now() noexcept;
|
| 17 |
};
|
| 18 |
```
|
|
|
|
| 5 |
`system_clock` or `steady_clock`.
|
| 6 |
|
| 7 |
``` cpp
|
| 8 |
class high_resolution_clock {
|
| 9 |
public:
|
| 10 |
+
using rep = unspecified;
|
| 11 |
+
using period = ratio<unspecified, unspecified{}>;
|
| 12 |
+
using duration = chrono::duration<rep, period>;
|
| 13 |
+
using time_point = chrono::time_point<unspecified, duration>;
|
| 14 |
static constexpr bool is_steady = unspecified;
|
| 15 |
|
| 16 |
static time_point now() noexcept;
|
| 17 |
};
|
| 18 |
```
|