Make to_string bypass format
This commit is contained in:
parent
ee4d4c7fd0
commit
7431165f38
@ -3371,7 +3371,9 @@ join(const Range& range, wstring_view sep) {
|
|||||||
*/
|
*/
|
||||||
template <typename T, FMT_ENABLE_IF(!std::is_integral<T>::value)>
|
template <typename T, FMT_ENABLE_IF(!std::is_integral<T>::value)>
|
||||||
inline std::string to_string(const T& value) {
|
inline std::string to_string(const T& value) {
|
||||||
return format("{}", value);
|
std::string result;
|
||||||
|
detail::write<char>(std::back_inserter(result), value);
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T, FMT_ENABLE_IF(std::is_integral<T>::value)>
|
template <typename T, FMT_ENABLE_IF(std::is_integral<T>::value)>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user