| 148 | // debug_print |
| 149 | |
| 150 | struct debug_printer { |
| 151 | template <typename T> |
| 152 | void operator()(const char * name, const T & t) const { |
| 153 | std::cout << " " << name << ": " << t << std::endl; |
| 154 | } |
| 155 | }; |
| 156 | |
| 157 | template <typename T> |
| 158 | void debug_print(const T & t) { |
nothing calls this directly
no outgoing calls
no test coverage detected