diff --git a/include/fast_float/constexpr_feature_detect.h b/include/fast_float/constexpr_feature_detect.h index b1d1a8a..6e876c5 100644 --- a/include/fast_float/constexpr_feature_detect.h +++ b/include/fast_float/constexpr_feature_detect.h @@ -50,7 +50,7 @@ #if defined(__clang__) #define FASTFLOAT_ASSUME(expr) __builtin_assume(expr) #elif defined(__GNUC__) && !defined(__ICC) -#define ASSUME(expr) __attribute__((expr))) +#define ASSUME(expr) __attribute__((expr)) #elif defined(_MSC_VER) || defined(__ICC) #define FASTFLOAT_ASSUME(expr) __assume(expr) #endif