From 68fb90ecba2f0d67096cd27c7731ee5f4bf33c67 Mon Sep 17 00:00:00 2001 From: HedgehogInTheCPP Date: Wed, 26 Aug 2026 01:28:25 +0300 Subject: [PATCH] temporary disable FASTFLOAT_ASSUME because of GCC bug. --- include/fast_float/constexpr_feature_detect.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/fast_float/constexpr_feature_detect.h b/include/fast_float/constexpr_feature_detect.h index 9b1f597..044a815 100644 --- a/include/fast_float/constexpr_feature_detect.h +++ b/include/fast_float/constexpr_feature_detect.h @@ -115,9 +115,9 @@ #ifdef FASTFLOAT_ASSUME // Use the provided definition. -#elif FASTFLOAT_HAS_CPP_ATTRIBUTE(assume) -#define FASTFLOAT_ASSUME(expr) [[assume(expr)]] -#else +// #elif FASTFLOAT_HAS_CPP_ATTRIBUTE(assume) +// #define FASTFLOAT_ASSUME(expr) [[assume(expr)]] +// #else #define FASTFLOAT_ASSUME(expr) #endif