diff options
author | crupest <crupest@outlook.com> | 2021-09-15 16:06:43 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-09-15 16:06:43 +0800 |
commit | d6cd1c46889e94b325244e5ba5ccea97cc856952 (patch) | |
tree | b8090c03c86b2b1f47dc37abb91636494e884f1f /include/cru/common/Format.hpp | |
parent | 93c9b3738c0a9dfc12f456e53fcaa098296a9d6a (diff) | |
download | cru-d6cd1c46889e94b325244e5ba5ccea97cc856952.tar.gz cru-d6cd1c46889e94b325244e5ba5ccea97cc856952.tar.bz2 cru-d6cd1c46889e94b325244e5ba5ccea97cc856952.zip |
...
Diffstat (limited to 'include/cru/common/Format.hpp')
-rw-r--r-- | include/cru/common/Format.hpp | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/include/cru/common/Format.hpp b/include/cru/common/Format.hpp deleted file mode 100644 index d4da2208..00000000 --- a/include/cru/common/Format.hpp +++ /dev/null @@ -1,18 +0,0 @@ -#pragma once -#include "Base.hpp" - -#include "StringUtil.hpp" - -#include <array> -#include <charconv> -#include <string> -#include <string_view> -#include <system_error> -#include <type_traits> - -namespace cru { -template <typename T, typename = std::enable_if_t<std::is_arithmetic_v<T>>> -std::u16string ToUtf16String(T number) { - return ToUtf16(std::to_string(number)); -} -} // namespace cru |