diff options
author | crupest <crupest@outlook.com> | 2021-03-24 22:58:07 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-03-24 22:58:07 +0800 |
commit | ba43736c55ad510942e9e83ca0c8bea7265cf055 (patch) | |
tree | a27a804ea3b95dbe33dde47568fe23b7f98439f6 /include/cru/common/Format.hpp | |
parent | 7f15a1ff9a2007e119798053083a0a87d042990a (diff) | |
download | cru-ba43736c55ad510942e9e83ca0c8bea7265cf055.tar.gz cru-ba43736c55ad510942e9e83ca0c8bea7265cf055.tar.bz2 cru-ba43736c55ad510942e9e83ca0c8bea7265cf055.zip |
...
Diffstat (limited to 'include/cru/common/Format.hpp')
-rw-r--r-- | include/cru/common/Format.hpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/include/cru/common/Format.hpp b/include/cru/common/Format.hpp index 59f34036..d4da2208 100644 --- a/include/cru/common/Format.hpp +++ b/include/cru/common/Format.hpp @@ -13,11 +13,6 @@ namespace cru { template <typename T, typename = std::enable_if_t<std::is_arithmetic_v<T>>> std::u16string ToUtf16String(T number) { - std::array<char, 40> buffer; - auto result = - std::to_chars(buffer.data(), buffer.data() + buffer.size(), number); - Ensures(result.ec == std::errc()); - std::string_view utf8_result(buffer.data(), result.ptr - buffer.data()); - return ToUtf16(utf8_result); + return ToUtf16(std::to_string(number)); } } // namespace cru |