Move wchar_t overloads to xchar.h

This commit is contained in:
Victor Zverovich
2021-05-30 06:32:27 -07:00
parent 19d45f4b31
commit 486a80e8ef
4 changed files with 58 additions and 58 deletions

View File

@@ -1890,12 +1890,6 @@ TEST(format_test, format_to) {
EXPECT_EQ("part1part2", s);
}
TEST(format_test, format_to_wide) {
std::vector<wchar_t> buf;
fmt::format_to(std::back_inserter(buf), L"{}{}", 42, L'\0');
EXPECT_STREQ(buf.data(), L"42");
}
TEST(format_test, format_to_memory_buffer) {
auto buf = fmt::basic_memory_buffer<char, 100>();
fmt::format_to(buf, "{}", "foo");