From Jason Turner

[time.clock.steady]

Diff to HTML by rtfpessoa

tmp/tmpr1ys5tys/{from.md → to.md} RENAMED
@@ -10,11 +10,11 @@ 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 const bool is_steady = true;
16
 
17
  static time_point now() noexcept;
18
  };
19
  ```
20
 
 
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
  ```
20