| 176 | // debug_print |
| 177 | |
| 178 | struct debug_printer { |
| 179 | template <typename T> |
| 180 | void operator()(const char * name, const T & t) const { |
| 181 | std::cout << " " << name << ": " << t << std::endl; |
| 182 | } |
| 183 | }; |
| 184 | |
| 185 | template <typename T> |
| 186 | void debug_print(const T & t) { |
nothing calls this directly
no outgoing calls
no test coverage detected