From Jason Turner

[depr.ostrstream.cons]

Diff to HTML by rtfpessoa

tmp/tmp57dk8o0q/{from.md → to.md} RENAMED
@@ -2,21 +2,19 @@
2
 
3
  ``` cpp
4
  ostrstream();
5
  ```
6
 
7
- *Effects:* Constructs an object of class `ostrstream`, initializing the
8
- base class with `ostream(&sb)` and initializing `sb` with
9
  `strstreambuf()`.
10
 
11
  ``` cpp
12
  ostrstream(char* s, int n, ios_base::openmode mode = ios_base::out);
13
  ```
14
 
15
- *Effects:* Constructs an object of class `ostrstream`, initializing the
16
- base class with `ostream(&sb)`, and initializing `sb` with one of two
17
- constructors:
18
 
19
  - If `(mode & app) == 0`, then `s` shall designate the first element of
20
  an array of `n` elements. The constructor is `strstreambuf(s, n, s)`.
21
  - If `(mode & app) != 0`, then `s` shall designate the first element of
22
  an array of `n` elements that contains an NTBS whose first element is
 
2
 
3
  ``` cpp
4
  ostrstream();
5
  ```
6
 
7
+ *Effects:* Initializes the base class with `ostream(&sb)` and `sb` with
 
8
  `strstreambuf()`.
9
 
10
  ``` cpp
11
  ostrstream(char* s, int n, ios_base::openmode mode = ios_base::out);
12
  ```
13
 
14
+ *Effects:* Initializes the base class with `ostream(&sb)`, and `sb` with
15
+ one of two constructors:
 
16
 
17
  - If `(mode & app) == 0`, then `s` shall designate the first element of
18
  an array of `n` elements. The constructor is `strstreambuf(s, n, s)`.
19
  - If `(mode & app) != 0`, then `s` shall designate the first element of
20
  an array of `n` elements that contains an NTBS whose first element is