Skip to content

Commit c4d3cda

Browse files
committed
compilation fix.
1 parent 4750e3d commit c4d3cda

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

include/fast_float/constexpr_feature_detect.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,7 @@
102102
// user provided solution
103103
// #elif defined(__cpp_attrubute_assume)
104104
// For support attribute [[assume]] is declared in P1774
105-
#define FASTFLOAT_ASSUME(expr) \
106-
assert(expr); \
107-
[[assume(expr)]]
105+
#define FASTFLOAT_ASSUME(expr) [[assume(expr)]]
108106
// #else
109107
// #define FASTFLOAT_ASSUME(expr)
110108
// #endif

0 commit comments

Comments
 (0)