| 327 | // if not in MGB_ENABLE_LOGGING, num2str would become defined but not used |
| 328 | template <typename T> |
| 329 | std::string num2str(T val) { |
| 330 | return std::to_string(val); |
| 331 | } |
| 332 | |
| 333 | std::string num2str(float val) { |
| 334 | union V { |
no test coverage detected