From Jason Turner

[stringstream.cons]

Diff to HTML by rtfpessoa

tmp/tmp3v4fte84/{from.md → to.md} RENAMED
@@ -1,6 +1,6 @@
1
- #### basic_stringstream constructors <a id="stringstream.cons">[[stringstream.cons]]</a>
2
 
3
  ``` cpp
4
  explicit basic_stringstream(
5
  ios_base::openmode which = ios_base::out | ios_base::in);
6
  ```
@@ -25,8 +25,8 @@ explicit basic_stringstream(
25
  basic_stringstream(basic_stringstream&& 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_istream<charT,traits>::set_rdbuf(&sb)` is
31
- called to install the contained `basic_stringbuf`.
32
 
 
1
+ #### `basic_stringstream` constructors <a id="stringstream.cons">[[stringstream.cons]]</a>
2
 
3
  ``` cpp
4
  explicit basic_stringstream(
5
  ios_base::openmode which = ios_base::out | ios_base::in);
6
  ```
 
25
  basic_stringstream(basic_stringstream&& 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_istream<charT, traits>::set_rdbuf(&sb)`
31
+ is called to install the contained `basic_stringbuf`.
32