| 265 | namespace fast_float { |
| 266 | |
| 267 | fastfloat_really_inline constexpr bool cpp20_and_in_constexpr() { |
| 268 | #if FASTFLOAT_HAS_IS_CONSTANT_EVALUATED |
| 269 | return std::is_constant_evaluated(); |
| 270 | #else |
| 271 | return false; |
| 272 | #endif |
| 273 | } |
| 274 | |
| 275 | // Compares two ASCII strings in a case insensitive manner. |
| 276 | inline FASTFLOAT_CONSTEXPR14 bool |
no outgoing calls
no test coverage detected