| 49 | #endif |
| 50 | |
| 51 | void print_cost() { |
| 52 | #ifdef DEBUG |
| 53 | for (auto p : countMp) { |
| 54 | std::cout << p.first << " called " << p.second << " times" << std::endl; |
| 55 | } |
| 56 | #endif |
| 57 | } |
| 58 | |
| 59 | static bool isBlankChar(const char c) { return c == ' ' || c == '\t' || c == '\u000C'; } |
| 60 |
nothing calls this directly
no outgoing calls
no test coverage detected