| 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 | { |
| 3939 | if (traits_type::not_eof(ch) && fputc(ch, sink) != EOF) { |
nothing calls this directly
no outgoing calls
no test coverage detected