From fade652ade6e9ba4b16e7484cbda5ee4c9178918 Mon Sep 17 00:00:00 2001 From: Justin Riddell Date: Fri, 27 Sep 2024 00:10:51 +0100 Subject: [PATCH] Require clang >=15 for _BitInt support (#4176) For appleclang, fixes issue #4173 --- include/fmt/base.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/base.h b/include/fmt/base.h index 9d02f25a3204..61115d9f453a 100644 --- a/include/fmt/base.h +++ b/include/fmt/base.h @@ -394,7 +394,7 @@ inline auto map(uint128_opt) -> monostate { return {}; } #endif #ifndef FMT_USE_BITINT -# define FMT_USE_BITINT (FMT_CLANG_VERSION >= 1400) +# define FMT_USE_BITINT (FMT_CLANG_VERSION >= 1500) #endif #if FMT_USE_BITINT