| 3943 | } |
| 3944 | |
| 3945 | std::streamsize xsputn(const char_type* s, std::streamsize count) override |
| 3946 | { |
| 3947 | return static_cast<std::streamsize>(fwrite(s, sizeof *s, static_cast<size_t>(count), sink)); |
| 3948 | } |
| 3949 | |
| 3950 | #ifdef BACKWARD_ATLEAST_CXX11 |
| 3951 | public: |
nothing calls this directly
no outgoing calls
no test coverage detected