| 281 | color_ostream* debug_stream; |
| 282 | |
| 283 | void debug(const char* fmt, ...) |
| 284 | { |
| 285 | if (debug_stream) |
| 286 | { |
| 287 | va_list args; |
| 288 | va_start(args, fmt); |
| 289 | debug_stream->vprint(fmt, args); |
| 290 | va_end(args); |
| 291 | } |
| 292 | } |
| 293 | |
| 294 | void debug_pause() |
| 295 | { |
no outgoing calls
no test coverage detected