From Jason Turner

[iostreamclass.general]

Diff to HTML by rtfpessoa

tmp/tmpnlss8ry6/{from.md → to.md} RENAMED
@@ -6,13 +6,13 @@ namespace std {
6
  class basic_iostream
7
  : public basic_istream<charT, traits>,
8
  public basic_ostream<charT, traits> {
9
  public:
10
  using char_type = charT;
11
- using int_type = typename traits::int_type;
12
- using pos_type = typename traits::pos_type;
13
- using off_type = typename traits::off_type;
14
  using traits_type = traits;
15
 
16
  // [iostream.cons], constructor
17
  explicit basic_iostream(basic_streambuf<charT, traits>* sb);
18
 
 
6
  class basic_iostream
7
  : public basic_istream<charT, traits>,
8
  public basic_ostream<charT, traits> {
9
  public:
10
  using char_type = charT;
11
+ using int_type = traits::int_type;
12
+ using pos_type = traits::pos_type;
13
+ using off_type = traits::off_type;
14
  using traits_type = traits;
15
 
16
  // [iostream.cons], constructor
17
  explicit basic_iostream(basic_streambuf<charT, traits>* sb);
18