| 938 | IEEEFloat::~IEEEFloat() { freeSignificand(); } |
| 939 | |
| 940 | unsigned int IEEEFloat::partCount() const { |
| 941 | return partCountForBits(semantics->precision + 1); |
| 942 | } |
| 943 | |
| 944 | const IEEEFloat::integerPart *IEEEFloat::significandParts() const { |
| 945 | return const_cast<IEEEFloat *>(this)->significandParts(); |
no test coverage detected