From Jason Turner

[ostringstream.cons]

Diff to HTML by rtfpessoa

tmp/tmpev12_csq/{from.md → to.md} RENAMED
@@ -1,9 +1,10 @@
1
  #### `basic_ostringstream` constructors <a id="ostringstream.cons">[[ostringstream.cons]]</a>
2
 
3
  ``` cpp
4
- explicit basic_ostringstream(ios_base::openmode which = ios_base::out);
 
5
  ```
6
 
7
  *Effects:* Constructs an object of class `basic_ostringstream`,
8
  initializing the base class with `basic_ostream(&sb)` and initializing
9
  `sb` with
@@ -24,8 +25,8 @@ explicit basic_ostringstream(
24
  basic_ostringstream(basic_ostringstream&& rhs);
25
  ```
26
 
27
  *Effects:* Move constructs from the rvalue `rhs`. This is accomplished
28
  by move constructing the base class, and the contained
29
- `basic_stringbuf`. Next `basic_ostream<charT,traits>::set_rdbuf(&sb)` is
30
- called to install the contained `basic_stringbuf`.
31
 
 
1
  #### `basic_ostringstream` constructors <a id="ostringstream.cons">[[ostringstream.cons]]</a>
2
 
3
  ``` cpp
4
+ explicit basic_ostringstream(
5
+ ios_base::openmode which = ios_base::out);
6
  ```
7
 
8
  *Effects:* Constructs an object of class `basic_ostringstream`,
9
  initializing the base class with `basic_ostream(&sb)` and initializing
10
  `sb` with
 
25
  basic_ostringstream(basic_ostringstream&& rhs);
26
  ```
27
 
28
  *Effects:* Move constructs from the rvalue `rhs`. This is accomplished
29
  by move constructing the base class, and the contained
30
+ `basic_stringbuf`. Next `basic_ostream<charT, traits>::set_rdbuf(&sb)`
31
+ is called to install the contained `basic_stringbuf`.
32