Move is_char specializations to xchar.h

This commit is contained in:
Victor Zverovich
2021-06-06 09:25:12 -07:00
parent 16c3514d01
commit d551b88a6d
8 changed files with 98 additions and 85 deletions

View File

@@ -96,9 +96,6 @@ TEST(ostream_test, print) {
std::ostringstream os;
fmt::print(os, "Don't {}!", "panic");
EXPECT_EQ("Don't panic!", os.str());
std::wostringstream wos;
fmt::print(wos, L"Don't {}!", L"panic");
EXPECT_EQ(L"Don't panic!", wos.str());
}
TEST(ostream_test, write_to_ostream) {