| 3933 | class cfile_streambuf : public std::streambuf { |
| 3934 | public: |
| 3935 | cfile_streambuf(FILE* _sink) : sink(_sink) {} |
| 3936 | int_type underflow() override { return traits_type::eof(); } |
| 3937 | int_type overflow(int_type ch) override |
| 3938 | { |
nothing calls this directly
no outgoing calls
no test coverage detected