Skip to content

Commit

Permalink
Remove total size check
Browse files Browse the repository at this point in the history
Signed-off-by: Harkrishn Patro <[email protected]>
  • Loading branch information
hpatro committed Jun 27, 2024
1 parent e00a633 commit d9d1cd3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/dict.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ typedef struct {

/* Validation and helper for `embeddedDictEntry` */

static_assert(sizeof(embeddedDictEntry) == 24, "unexpected total size of embeddedDictEntry");
static_assert(offsetof(embeddedDictEntry, v) == 0, "unexpected field offset");
static_assert(offsetof(embeddedDictEntry, next) == sizeof(void *), "unexpected field offset");
static_assert(offsetof(embeddedDictEntry, key_header_size) == 2 * sizeof(void *), "unexpected field offset");
Expand Down

0 comments on commit d9d1cd3

Please sign in to comment.