| 104 | } |
| 105 | |
| 106 | bool isLongLongValue(MathLib::biguint value) const { |
| 107 | const MathLib::biguint longLongMax = max_value(long_long_bit); |
| 108 | return value <= longLongMax; |
| 109 | } |
| 110 | |
| 111 | std::uint8_t char_bit; /// bits in char |
| 112 | std::uint8_t short_bit; /// bits in short |
nothing calls this directly
no test coverage detected