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)