From c4d3cda8883aa9293a23d3dfd1c60d819e8c4c59 Mon Sep 17 00:00:00 2001 From: HedgehogInTheCPP Date: Sat, 22 Aug 2026 22:59:28 +0300 Subject: [PATCH] compilation fix. --- include/fast_float/constexpr_feature_detect.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/include/fast_float/constexpr_feature_detect.h b/include/fast_float/constexpr_feature_detect.h index 4243a1a..cba7d41 100644 --- a/include/fast_float/constexpr_feature_detect.h +++ b/include/fast_float/constexpr_feature_detect.h @@ -102,9 +102,7 @@ // user provided solution // #elif defined(__cpp_attrubute_assume) // For support attribute [[assume]] is declared in P1774 -#define FASTFLOAT_ASSUME(expr) \ - assert(expr); \ - [[assume(expr)]] +#define FASTFLOAT_ASSUME(expr) [[assume(expr)]] // #else // #define FASTFLOAT_ASSUME(expr) // #endif