| 355 | } |
| 356 | |
| 357 | static std::string indent(int n) { |
| 358 | std::string result; |
| 359 | for (int i = 0; i < n; i++) { |
| 360 | result += '\t'; |
| 361 | } |
| 362 | return result; |
| 363 | } |
| 364 | |
| 365 | template <class T> |
| 366 | bool print_arg(const std::vector<T> &vec) { |
nothing calls this directly
no outgoing calls
no test coverage detected