| 4102 | } |
| 4103 | |
| 4104 | void print_header(std::ostream& os, size_t thread_id) |
| 4105 | { |
| 4106 | os << "Stack trace (most recent call last)"; |
| 4107 | if (thread_id) { |
| 4108 | os << " in thread " << thread_id; |
| 4109 | } |
| 4110 | os << ":\n"; |
| 4111 | } |
| 4112 | |
| 4113 | void print_trace(std::ostream& os, const ResolvedTrace& trace, Colorize& colorize) |
| 4114 | { |
nothing calls this directly
no outgoing calls
no test coverage detected