From Jason Turner

[depr.ostrstream]

Diff to HTML by rtfpessoa

tmp/tmpx7hws25g/{from.md → to.md} RENAMED
@@ -29,21 +29,19 @@ is presented here as:
29
 
30
  ``` cpp
31
  ostrstream();
32
  ```
33
 
34
- *Effects:* Constructs an object of class `ostrstream`, initializing the
35
- base class with `ostream(&sb)` and initializing `sb` with
36
  `strstreambuf()`.
37
 
38
  ``` cpp
39
  ostrstream(char* s, int n, ios_base::openmode mode = ios_base::out);
40
  ```
41
 
42
- *Effects:* Constructs an object of class `ostrstream`, initializing the
43
- base class with `ostream(&sb)`, and initializing `sb` with one of two
44
- constructors:
45
 
46
  - If `(mode & app) == 0`, then `s` shall designate the first element of
47
  an array of `n` elements. The constructor is `strstreambuf(s, n, s)`.
48
  - If `(mode & app) != 0`, then `s` shall designate the first element of
49
  an array of `n` elements that contains an NTBS whose first element is
 
29
 
30
  ``` cpp
31
  ostrstream();
32
  ```
33
 
34
+ *Effects:* Initializes the base class with `ostream(&sb)` and `sb` with
 
35
  `strstreambuf()`.
36
 
37
  ``` cpp
38
  ostrstream(char* s, int n, ios_base::openmode mode = ios_base::out);
39
  ```
40
 
41
+ *Effects:* Initializes the base class with `ostream(&sb)`, and `sb` with
42
+ one of two constructors:
 
43
 
44
  - If `(mode & app) == 0`, then `s` shall designate the first element of
45
  an array of `n` elements. The constructor is `strstreambuf(s, n, s)`.
46
  - If `(mode & app) != 0`, then `s` shall designate the first element of
47
  an array of `n` elements that contains an NTBS whose first element is