Use more conventional field order in Mutation

This commit is contained in:
2024-06-03 13:26:27 -07:00
parent a3591ebdb8
commit 9e90d5aadf
7 changed files with 20 additions and 20 deletions

View File

@@ -60,8 +60,8 @@ struct __attribute__((__visibility__("default"))) VersionedMap {
/** Mutations are bitwise-lexicographically ordered by param1. */
struct Mutation {
const uint8_t *param1;
const uint8_t *param2;
int param1Len;
const uint8_t *param2;
int param2Len;
MutationType type;
};