diff --git a/include/fast_float/float_common.h b/include/fast_float/float_common.h index 4e4f1e7..2dd35a9 100644 --- a/include/fast_float/float_common.h +++ b/include/fast_float/float_common.h @@ -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