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