Use uint64_t's, they can actually hold that many bits.

This commit is contained in:
OBattler
2023-04-29 18:14:44 +02:00
parent 4aedbc44be
commit 6e853aa756

View File

@@ -51,9 +51,9 @@ typedef union
double d;
struct {
unsigned int mantissa:52;
unsigned int exponent:11;
unsigned int negative:1;
uint64_t mantissa:52;
uint64_t exponent:11;
uint64_t negative:1;
};
} double_decompose;