Fix handling of long with FMT_BUILTIN_TYPES=0

This commit is contained in:
Victor Zverovich
2025-03-22 07:33:28 -07:00
parent 0843317e08
commit 9d6e24c64e
2 changed files with 3 additions and 2 deletions

View File

@ -13,6 +13,7 @@
TEST(no_builtin_types_test, format) {
EXPECT_EQ(fmt::format("{}", 42), "42");
EXPECT_EQ(fmt::format("{}", 42L), "42");
}
TEST(no_builtin_types_test, double_is_custom_type) {