mirror of
https://github.com/fastfloat/fast_float.git
synced 2026-02-08 10:46:52 +08:00
Update float_common.h
This commit is contained in:
parent
002966323c
commit
ca51b646c8
@ -181,7 +181,6 @@ struct adjusted_mantissa {
|
|||||||
uint64_t mantissa{0};
|
uint64_t mantissa{0};
|
||||||
int power2{0}; // a negative value indicates an invalid result
|
int power2{0}; // a negative value indicates an invalid result
|
||||||
adjusted_mantissa() = default;
|
adjusted_mantissa() = default;
|
||||||
// bool operator==(const adjusted_mantissa &o) const = default;
|
|
||||||
bool operator==(const adjusted_mantissa &o) const {
|
bool operator==(const adjusted_mantissa &o) const {
|
||||||
return mantissa == o.mantissa && power2 == o.power2;
|
return mantissa == o.mantissa && power2 == o.power2;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user