From Jason Turner

[time.clock.steady]

Diff to HTML by rtfpessoa

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