From dcde904e685cd05a170e100866a978c5fcfe0fa4 Mon Sep 17 00:00:00 2001 From: HedgehogInTheCPP Date: Wed, 26 Aug 2026 01:31:10 +0300 Subject: [PATCH] temporary disable FASTFLOAT_ASSUME because of GCC bug --- include/fast_float/constexpr_feature_detect.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fast_float/constexpr_feature_detect.h b/include/fast_float/constexpr_feature_detect.h index 044a815..3568edf 100644 --- a/include/fast_float/constexpr_feature_detect.h +++ b/include/fast_float/constexpr_feature_detect.h @@ -117,7 +117,7 @@ // Use the provided definition. // #elif FASTFLOAT_HAS_CPP_ATTRIBUTE(assume) // #define FASTFLOAT_ASSUME(expr) [[assume(expr)]] -// #else +#else #define FASTFLOAT_ASSUME(expr) #endif