Add comment to the FASTFLOAT_CONSTEXPR14 macro definition

This commit is contained in:
Lenard Szolnoki 2023-02-25 11:11:09 +00:00
parent be6084863c
commit a6991ea44f

View File

@ -91,6 +91,7 @@
// rust style `try!()` macro, or `?` operator
#define FASTFLOAT_TRY(x) { if (!(x)) return false; }
// Testing for https://wg21.link/N3652, adopted in C++14
#if __cpp_constexpr >= 201304
#define FASTFLOAT_CONSTEXPR14 constexpr
#else