aboutsummaryrefslogtreecommitdiff
path: root/include/cru/common/Format.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/cru/common/Format.hpp')
-rw-r--r--include/cru/common/Format.hpp18
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