mirror of
https://github.com/fastfloat/fast_float.git
synced 2025-12-06 16:56:57 +08:00
Pedantic member initialization.
This commit is contained in:
parent
8e1103d93e
commit
e5917323ec
@ -126,8 +126,8 @@ fastfloat_really_inline value128 full_multiplication(uint64_t value1,
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
struct adjusted_mantissa {
|
struct adjusted_mantissa {
|
||||||
uint64_t mantissa;
|
uint64_t mantissa{0};
|
||||||
int power2; // a negative value indicate an invalid result
|
int power2{0}; // a negative value indicate an invalid result
|
||||||
adjusted_mantissa() = default;
|
adjusted_mantissa() = default;
|
||||||
// bool operator==(const adjusted_mantissa &o) const = default;
|
// bool operator==(const adjusted_mantissa &o) const = default;
|
||||||
bool operator==(const adjusted_mantissa &o) const {
|
bool operator==(const adjusted_mantissa &o) const {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user