Training courses
Kernel and Embedded Linux
Bootlin training courses
1 2 3 4 5 6 7
#ifndef STREAMBUF #define STREAMBUF template <typename> struct basic_streambuf { basic_streambuf(const basic_streambuf &); }; template <typename T> basic_streambuf<T>::basic_streambuf(const basic_streambuf &) = default; #endif