From Jason Turner

[vector.capacity]

Diff to HTML by rtfpessoa

tmp/tmpbaxbixs_/{from.md → to.md} RENAMED
@@ -22,15 +22,15 @@ size, so that it can manage the storage allocation accordingly. After
22
  `capacity()` otherwise. Reallocation happens at this point if and only
23
  if the current capacity is less than the argument of `reserve()`. If an
24
  exception is thrown other than by the move constructor of a
25
  non-*Cpp17CopyInsertable* type, there are no effects.
26
 
 
 
27
  *Complexity:* It does not change the size of the sequence and takes at
28
  most linear time in the size of the sequence.
29
 
30
- *Throws:* `length_error` if `n > max_size()`.[^4]
31
-
32
  *Remarks:* Reallocation invalidates all the references, pointers, and
33
  iterators referring to the elements in the sequence, as well as the
34
  past-the-end iterator.
35
 
36
  [*Note 1*: If no reallocation happens, they remain
 
22
  `capacity()` otherwise. Reallocation happens at this point if and only
23
  if the current capacity is less than the argument of `reserve()`. If an
24
  exception is thrown other than by the move constructor of a
25
  non-*Cpp17CopyInsertable* type, there are no effects.
26
 
27
+ *Throws:* `length_error` if `n > max_size()`.[^4]
28
+
29
  *Complexity:* It does not change the size of the sequence and takes at
30
  most linear time in the size of the sequence.
31
 
 
 
32
  *Remarks:* Reallocation invalidates all the references, pointers, and
33
  iterators referring to the elements in the sequence, as well as the
34
  past-the-end iterator.
35
 
36
  [*Note 1*: If no reallocation happens, they remain