| 12646 | { |
| 12647 | public: |
| 12648 | explicit output_vector_adapter(std::vector<CharType>& vec) noexcept |
| 12649 | : v(vec) |
| 12650 | {} |
| 12651 | |
| 12652 | void write_character(CharType c) override |
| 12653 | { |
nothing calls this directly
no outgoing calls
no test coverage detected