| 54 | kOverflow | kUnderflow); |
| 55 | |
| 56 | FloatStatus(bool clear_on_dst=true) |
| 57 | : clear_on_dst_(clear_on_dst) |
| 58 | { |
| 59 | if constexpr (kAllExcept != 0) { |
| 60 | fpstatus_ = fetestexcept(kAllExcept); |
| 61 | } |
| 62 | else { |
| 63 | fpstatus_ = 0; |
| 64 | } |
| 65 | } |
| 66 | ~FloatStatus() |
| 67 | { |
| 68 | if constexpr (kAllExcept != 0) { |
nothing calls this directly
no outgoing calls
no test coverage detected