| 156 | |
| 157 | template<typename T> |
| 158 | static void OutputValue(const char* name, T value, int indent) |
| 159 | { |
| 160 | OutputIndent(indent); |
| 161 | printf("%s: %.3f\n", name, (float)value); |
| 162 | } |
| 163 | |
| 164 | template<> |
| 165 | void OutputValue(const char* name, int value, int indent) |
no test coverage detected