| 1594 | static_cast<int>(sizeof(F) * num_bits<unsigned char>()); |
| 1595 | |
| 1596 | constexpr basic_fp() : f(0), e(0) {} |
| 1597 | constexpr basic_fp(uint64_t f_val, int e_val) : f(f_val), e(e_val) {} |
| 1598 | |
| 1599 | // Constructs fp from an IEEE754 floating-point number. |
nothing calls this directly
no outgoing calls
no test coverage detected