From Jason Turner

[container.adaptors.general]

Diff to HTML by rtfpessoa

tmp/tmp_n5jmpa6/{from.md → to.md} RENAMED
@@ -1,6 +1,6 @@
1
- ### In general <a id="container.adaptors.general">[[container.adaptors.general]]</a>
2
 
3
  The headers `<queue>`, `<stack>`, `<flat_map>`, and `<flat_set>` define
4
  the container adaptors `queue` and `priority_queue`, `stack`, `flat_map`
5
  and `flat_multimap`, and `flat_set` and `flat_multiset`, respectively.
6
 
@@ -71,9 +71,8 @@ deduction guides for container adaptors.
71
  The following exposition-only alias template may appear in deduction
72
  guides for container adaptors:
73
 
74
  ``` cpp
75
  template<class Allocator, class T>
76
- using alloc-rebind = // exposition only
77
- typename allocator_traits<Allocator>::template rebind_alloc<T>;
78
  ```
79
 
 
1
+ ### General <a id="container.adaptors.general">[[container.adaptors.general]]</a>
2
 
3
  The headers `<queue>`, `<stack>`, `<flat_map>`, and `<flat_set>` define
4
  the container adaptors `queue` and `priority_queue`, `stack`, `flat_map`
5
  and `flat_multimap`, and `flat_set` and `flat_multiset`, respectively.
6
 
 
71
  The following exposition-only alias template may appear in deduction
72
  guides for container adaptors:
73
 
74
  ``` cpp
75
  template<class Allocator, class T>
76
+ using alloc-rebind = allocator_traits<Allocator>::template rebind_alloc<T>; // exposition only
 
77
  ```
78