From Jason Turner

[istringstream.cons]

Diff to HTML by rtfpessoa

tmp/tmp1fyhhmt1/{from.md → to.md} RENAMED
@@ -15,11 +15,12 @@ explicit basic_istringstream(
15
  ios_base::openmode which = ios_base::in);
16
  ```
17
 
18
  *Effects:* Initializes the base class with
19
  `basic_istream<charT, traits>(addressof(sb))` [[istream]] and `sb` with
20
- `basic_stringbuf<charT, traits, Allocator>(s, which | ios_base::in)`([[stringbuf.cons]]).
 
21
 
22
  ``` cpp
23
  basic_istringstream(ios_base::openmode which, const Allocator& a);
24
  ```
25
 
@@ -46,11 +47,12 @@ template<class SAlloc>
46
  ios_base::openmode which, const Allocator& a);
47
  ```
48
 
49
  *Effects:* Initializes the base class with
50
  `basic_istream<charT, traits>(addressof(sb))` [[istream]] and `sb` with
51
- `basic_stringbuf<charT, traits, Allocator>(s, which | ios_base::in, a)`([[stringbuf.cons]]).
 
52
 
53
  ``` cpp
54
  template<class SAlloc>
55
  explicit basic_istringstream(
56
  const basic_string<charT, traits, SAlloc>& s,
 
15
  ios_base::openmode which = ios_base::in);
16
  ```
17
 
18
  *Effects:* Initializes the base class with
19
  `basic_istream<charT, traits>(addressof(sb))` [[istream]] and `sb` with
20
+ `basic_stringbuf<charT, traits, Allocator>(s, which | ios_base::in)`
21
+ [[stringbuf.cons]].
22
 
23
  ``` cpp
24
  basic_istringstream(ios_base::openmode which, const Allocator& a);
25
  ```
26
 
 
47
  ios_base::openmode which, const Allocator& a);
48
  ```
49
 
50
  *Effects:* Initializes the base class with
51
  `basic_istream<charT, traits>(addressof(sb))` [[istream]] and `sb` with
52
+ `basic_stringbuf<charT, traits, Allocator>(s, which | ios_base::in, a)`
53
+ [[stringbuf.cons]].
54
 
55
  ``` cpp
56
  template<class SAlloc>
57
  explicit basic_istringstream(
58
  const basic_string<charT, traits, SAlloc>& s,