From 3ef23bdde6bf42d2b1b1dbeba77901d6003b2e27 Mon Sep 17 00:00:00 2001 From: boeboe26 Date: Wed, 8 Apr 2026 15:02:03 +0200 Subject: [PATCH] fix --- include/fmt/base.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/fmt/base.h b/include/fmt/base.h index c2ec12c7..065d4e24 100644 --- a/include/fmt/base.h +++ b/include/fmt/base.h @@ -113,8 +113,8 @@ # define FMT_USE_CONSTEVAL 0 #elif FMT_LIBCPP_VERSION && FMT_LIBCPP_VERSION < 10000 # define FMT_USE_CONSTEVAL 0 -#elif defined(__apple_build_version__) && __apple_build_version__ < 14000029L -# define FMT_USE_CONSTEVAL 0 // consteval is broken in Apple clang < 14. +#elif defined(__apple_build_version__) +# define FMT_USE_CONSTEVAL 0 // consteval is broken in Apple clang. #elif FMT_MSC_VERSION && FMT_MSC_VERSION < 1929 # define FMT_USE_CONSTEVAL 0 // consteval is broken in MSVC VS2019 < 16.10. #elif defined(__cpp_consteval)