FMT_MSC_VER -> FMT_MSC_VERSION

This commit is contained in:
Victor Zverovich
2022-05-29 15:39:08 -07:00
parent 27cd68c301
commit c83a5d42bb
10 changed files with 41 additions and 41 deletions
+2 -2
View File
@@ -21,7 +21,7 @@
# define FMT_RANGES_TEST_ENABLE_C_STYLE_ARRAY
#endif
#if !FMT_MSC_VER || FMT_MSC_VER > 1910
#if !FMT_MSC_VERSION || FMT_MSC_VERSION > 1910
# define FMT_RANGES_TEST_ENABLE_JOIN
# define FMT_RANGES_TEST_ENABLE_FORMAT_STRUCT
#endif
@@ -219,7 +219,7 @@ TEST(ranges_test, enum_range) {
EXPECT_EQ(fmt::format("{}", v), "[0]");
}
#if !FMT_MSC_VER
#if !FMT_MSC_VERSION
struct unformattable {};
TEST(ranges_test, unformattable_range) {