brintos

brintos / llvm-project-archived public Read only

0
0
Text · 234 B · 30ea73d Raw
8 lines · plain
1 #ifndef STREAMBUF2 #define STREAMBUF3 template <typename> struct basic_streambuf {4  basic_streambuf(const basic_streambuf &);5  };6template <typename T> basic_streambuf<T>::basic_streambuf(const basic_streambuf &) = default;7#endif8