| 1132 | /// get a string as a convertible value for arithmetic types |
| 1133 | template <typename T, enable_if_t<std::is_arithmetic<T>::value, detail::enabler> = detail::dummy> |
| 1134 | std::string value_string(const T &value) { |
| 1135 | return std::to_string(value); |
| 1136 | } |
| 1137 | /// get a string as a convertible value for enumerations |
| 1138 | template <typename T, enable_if_t<std::is_enum<T>::value, detail::enabler> = detail::dummy> |
| 1139 | std::string value_string(const T &value) { |
no test coverage detected