mirror of
https://github.com/corda/corda.git
synced 2025-03-15 16:46:12 +00:00
change bool field types to uint8_t in Fixie class
The bool type is 32 bits on Darwin/PowerPC, unlike other platforms. To make bootimage creation consistent, we now use an explicit 8-bit type.
This commit is contained in:
parent
d89a96ae6d
commit
043e466921
@ -544,9 +544,9 @@ class Fixie {
|
||||
// you add/remove/change fields in this class:
|
||||
|
||||
uint8_t age;
|
||||
bool hasMask;
|
||||
bool marked;
|
||||
bool dirty;
|
||||
uint8_t hasMask;
|
||||
uint8_t marked;
|
||||
uint8_t dirty;
|
||||
uint32_t size;
|
||||
Fixie* next;
|
||||
Fixie** handle;
|
||||
|
Loading…
x
Reference in New Issue
Block a user