| 44 | |
| 45 | template <typename Appender> |
| 46 | void BinaryCharPrinter<Appender>::Flush() { |
| 47 | if (_n > 0) { |
| 48 | _appender->Append(_buf, _n); |
| 49 | _n = 0; |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | template <typename Appender> |
| 54 | void BinaryCharPrinter<Appender>::PushChar(unsigned char c) { |
no test coverage detected