| 3690 | std::streamsize xsputn(const char_type*, std::streamsize count) override { return count; } |
| 3691 | |
| 3692 | int_type overflow(int_type ch) override { |
| 3693 | setp(std::begin(buf), std::end(buf)); |
| 3694 | return traits_type::not_eof(ch); |
| 3695 | } |
| 3696 | } discardBuf; |
| 3697 | |
| 3698 | public: |