| 7 | struct StringLogStream : public LogStream { |
| 8 | StringLogStream() : LogStream(stringbuf) {} |
| 9 | virtual void do_begin() noexcept override { |
| 10 | begin_times++; |
| 11 | } |
| 12 | virtual void do_end() noexcept override { |
| 13 | end_times++; |
| 14 | } |
nothing calls this directly
no outgoing calls
no test coverage detected