| 129 | // debug_print |
| 130 | |
| 131 | struct debug_printer { |
| 132 | template <typename T> |
| 133 | void operator()(const char * name, const T & t) const { |
| 134 | std::cout << " " << name << ": " << t << std::endl; |
| 135 | } |
| 136 | }; |
| 137 | |
| 138 | template <typename T> |
| 139 | void debug_print(const T & t) { |
nothing calls this directly
no outgoing calls
no test coverage detected