From Jason Turner

[length.error]

Diff to HTML by rtfpessoa

tmp/tmpf4lwuk_d/{from.md → to.md} RENAMED
@@ -18,15 +18,15 @@ exceeds its maximum allowable size.
18
  length_error(const string& what_arg);
19
  ```
20
 
21
  *Effects:* Constructs an object of class `length_error`.
22
 
23
- `strcmp(what(), what_arg.c_str()) == 0`.
24
 
25
  ``` cpp
26
  length_error(const char* what_arg);
27
  ```
28
 
29
  *Effects:* Constructs an object of class `length_error`.
30
 
31
- `strcmp(what(), what_arg) == 0`.
32
 
 
18
  length_error(const string& what_arg);
19
  ```
20
 
21
  *Effects:* Constructs an object of class `length_error`.
22
 
23
+ *Postconditions:* `strcmp(what(), what_arg.c_str()) == 0`.
24
 
25
  ``` cpp
26
  length_error(const char* what_arg);
27
  ```
28
 
29
  *Effects:* Constructs an object of class `length_error`.
30
 
31
+ *Postconditions:* `strcmp(what(), what_arg) == 0`.
32