| 217 | |
| 218 | template <class T> |
| 219 | inline auto to_string(const T& x) |
| 220 | -> decltype((std::declval<std::stringstream>() << x), std::string{}) |
| 221 | { |
| 222 | std::stringstream ss; |
| 223 | ss << x; |
| 224 | return ss.str(); |
| 225 | } |
| 226 | |
| 227 | } // namespace MIGRAPHX_INLINE_NS |
| 228 | } // namespace migraphx |
no test coverage detected