| 21 | |
| 22 | template <typename TCharType, typename T> |
| 23 | inline std::enable_if_t<!std::is_arithmetic<std::remove_cv_t<T>>::value, void> |
| 24 | AppendToString(TBasicString<TCharType>& dst, const T& t) { |
| 25 | dst.AppendNoAlias(ToString(t)); |
| 26 | } |
| 27 | |
| 28 | template <typename TCharType, typename T> |
| 29 | inline std::enable_if_t<std::is_arithmetic<std::remove_cv_t<T>>::value, void> |
no test coverage detected