| 32 | |
| 33 | template <typename T> |
| 34 | inline std::string toString(const T &value) |
| 35 | { |
| 36 | std::ostringstream oss; |
| 37 | oss << value; |
| 38 | return oss.str(); |
| 39 | } |
| 40 | |
| 41 | /** |
| 42 | * @brief Log a message to the logger. If NO_LOG is defined in a source or as a |
nothing calls this directly
no outgoing calls
no test coverage detected