Remove FMT_USE_USER_LITERALS

This commit is contained in:
Victor Zverovich
2024-09-11 08:54:54 -07:00
parent f924d16e47
commit 1bde49e545
5 changed files with 15 additions and 34 deletions

View File

@@ -144,7 +144,6 @@ TEST(format_test, wide_format_to_n) {
EXPECT_EQ(L"BC x", fmt::wstring_view(buffer, 4));
}
#if FMT_USE_USER_LITERALS
TEST(xchar_test, named_arg_udl) {
using namespace fmt::literals;
auto udl_a =
@@ -155,7 +154,6 @@ TEST(xchar_test, named_arg_udl) {
fmt::arg(L"second", L"cad"), fmt::arg(L"third", 99)),
udl_a);
}
#endif // FMT_USE_USER_LITERALS
TEST(xchar_test, print) {
// Check that the wide print overload compiles.