temporary disable FASTFLOAT_ASSUME because of GCC bug.

This commit is contained in:
HedgehogInTheCPP 2026-08-26 01:28:25 +03:00
parent 667a022fe3
commit 68fb90ecba

View File

@ -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