From Jason Turner

[allocator.adaptor.members]

Diff to HTML by rtfpessoa

tmp/tmpf0q0fkhd/{from.md → to.md} RENAMED
@@ -29,18 +29,18 @@ const outer_allocator_type& outer_allocator() const noexcept;
29
  ```
30
 
31
  *Returns:* `static_cast<const OuterAlloc&>(*this)`.
32
 
33
  ``` cpp
34
- [[nodiscard]] pointer allocate(size_type n);
35
  ```
36
 
37
  *Returns:*
38
  `allocator_traits<OuterAlloc>::allocate(outer_allocator(), n)`.
39
 
40
  ``` cpp
41
- [[nodiscard]] pointer allocate(size_type n, const_void_pointer hint);
42
  ```
43
 
44
  *Returns:*
45
  `allocator_traits<OuterAlloc>::allocate(outer_allocator(), n, hint)`.
46
 
 
29
  ```
30
 
31
  *Returns:* `static_cast<const OuterAlloc&>(*this)`.
32
 
33
  ``` cpp
34
+ pointer allocate(size_type n);
35
  ```
36
 
37
  *Returns:*
38
  `allocator_traits<OuterAlloc>::allocate(outer_allocator(), n)`.
39
 
40
  ``` cpp
41
+ pointer allocate(size_type n, const_void_pointer hint);
42
  ```
43
 
44
  *Returns:*
45
  `allocator_traits<OuterAlloc>::allocate(outer_allocator(), n, hint)`.
46