From Jason Turner

[thread.syn]

Diff to HTML by rtfpessoa

tmp/tmpjqnoivb8/{from.md → to.md} RENAMED
@@ -1,19 +1,20 @@
1
  ### Header `<thread>` synopsis <a id="thread.syn">[[thread.syn]]</a>
2
 
3
  ``` cpp
4
  #include <compare> // see [compare.syn]
5
- #include <initializer_list> // see [initializer.list.syn]
6
 
7
  namespace std {
 
8
  class thread;
9
 
10
  void swap(thread& x, thread& y) noexcept;
11
 
12
- // [thread.jthread.class] class jthread
13
  class jthread;
14
 
 
15
  namespace this_thread {
16
  thread::id get_id() noexcept;
17
 
18
  void yield() noexcept;
19
  template<class Clock, class Duration>
 
1
  ### Header `<thread>` synopsis <a id="thread.syn">[[thread.syn]]</a>
2
 
3
  ``` cpp
4
  #include <compare> // see [compare.syn]
 
5
 
6
  namespace std {
7
+ // [thread.thread.class], class thread
8
  class thread;
9
 
10
  void swap(thread& x, thread& y) noexcept;
11
 
12
+ // [thread.jthread.class], class jthread
13
  class jthread;
14
 
15
+ // [thread.thread.this], namespace this_thread
16
  namespace this_thread {
17
  thread::id get_id() noexcept;
18
 
19
  void yield() noexcept;
20
  template<class Clock, class Duration>