1 | #ifndef STREAMBUF |
---|---|
2 | #define STREAMBUF |
3 | template <typename> struct basic_streambuf { |
4 | basic_streambuf(const basic_streambuf &); |
5 | }; |
6 | template <typename T> basic_streambuf<T>::basic_streambuf(const basic_streambuf &) = default; |
7 | #endif |
8 |
1 | #ifndef STREAMBUF |
---|---|
2 | #define STREAMBUF |
3 | template <typename> struct basic_streambuf { |
4 | basic_streambuf(const basic_streambuf &); |
5 | }; |
6 | template <typename T> basic_streambuf<T>::basic_streambuf(const basic_streambuf &) = default; |
7 | #endif |
8 |