From Jason Turner

[time.clock.hires]

Diff to HTML by rtfpessoa

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
- typedef unspecified rep;
11
- typedef ratio<unspecified, unspecified> period;
12
- typedef chrono::duration<rep, period> duration;
13
- typedef chrono::time_point<unspecified, duration> time_point;
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
  ```