tmp/tmp3mlsz2ik/{from.md → to.md}
RENAMED
|
@@ -9,13 +9,13 @@ namespace std {
|
|
| 9 |
template<class charT, class traits = char_traits<charT>>
|
| 10 |
class basic_ostream : virtual public basic_ios<charT, traits> {
|
| 11 |
public:
|
| 12 |
// types (inherited from basic_ios[ios])
|
| 13 |
using char_type = charT;
|
| 14 |
-
using int_type =
|
| 15 |
-
using pos_type =
|
| 16 |
-
using off_type =
|
| 17 |
using traits_type = traits;
|
| 18 |
|
| 19 |
// [ostream.cons], constructor/destructor
|
| 20 |
explicit basic_ostream(basic_streambuf<char_type, traits>* sb);
|
| 21 |
virtual ~basic_ostream();
|
|
|
|
| 9 |
template<class charT, class traits = char_traits<charT>>
|
| 10 |
class basic_ostream : virtual public basic_ios<charT, traits> {
|
| 11 |
public:
|
| 12 |
// types (inherited from basic_ios[ios])
|
| 13 |
using char_type = charT;
|
| 14 |
+
using int_type = traits::int_type;
|
| 15 |
+
using pos_type = traits::pos_type;
|
| 16 |
+
using off_type = traits::off_type;
|
| 17 |
using traits_type = traits;
|
| 18 |
|
| 19 |
// [ostream.cons], constructor/destructor
|
| 20 |
explicit basic_ostream(basic_streambuf<char_type, traits>* sb);
|
| 21 |
virtual ~basic_ostream();
|