| 152 | //============================================================================== |
| 153 | |
| 154 | inline void CodePrinter::reset() { *this = {}; } |
| 155 | inline bool CodePrinter::empty() const { return lines.empty(); } |
| 156 | |
| 157 | inline CodePrinter& CodePrinter::operator<< (const char* s) { writeBlock (s); return *this; } |
nothing calls this directly
no outgoing calls
no test coverage detected