We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
class LeafEntry { public: uint8_t f_version : 4; Key key; Value value; uint8_t r_version : 4;
LeafEntry() { f_version = 0; r_version = 0; value = kValueNull; key = 0; } } attribute((packed));
The size of LeafEntry is still 18 bytes, not 17. Is there any other solution to save 1 byte?
The text was updated successfully, but these errors were encountered:
Hi, thank you for pointing out this bug. To save the 1 byte, we should operate the LeafEntry via bit-shift operations
Sorry, something went wrong.
No branches or pull requests
class LeafEntry {
public:
uint8_t f_version : 4;
Key key;
Value value;
uint8_t r_version : 4;
LeafEntry() {
f_version = 0;
r_version = 0;
value = kValueNull;
key = 0;
}
} attribute((packed));
The size of LeafEntry is still 18 bytes, not 17. Is there any other solution to save 1 byte?
The text was updated successfully, but these errors were encountered: