Update float_common.h

This commit is contained in:
Daniel Lemire 2021-01-07 16:44:39 -05:00 committed by GitHub
parent 002966323c
commit ca51b646c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -181,7 +181,6 @@ struct adjusted_mantissa {
uint64_t mantissa{0};
int power2{0}; // a negative value indicates an invalid result
adjusted_mantissa() = default;
// bool operator==(const adjusted_mantissa &o) const = default;
bool operator==(const adjusted_mantissa &o) const {
return mantissa == o.mantissa && power2 == o.power2;
}