| 323 | namespace fast_float { |
| 324 | |
| 325 | fastfloat_really_inline constexpr bool cpp20_and_in_constexpr() { |
| 326 | #if FASTFLOAT_HAS_IS_CONSTANT_EVALUATED |
| 327 | return std::is_constant_evaluated(); |
| 328 | #else |
| 329 | return false; |
| 330 | #endif |
| 331 | } |
| 332 | |
| 333 | template <typename T> |
| 334 | fastfloat_really_inline constexpr bool is_supported_float_type() { |
no test coverage detected