From 55eaef5b1d9f2ea7bf49e4d1eae0c4eb6114d563 Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Wed, 13 Mar 2024 10:59:25 -0700 Subject: [PATCH] Remove 16 bytes from Node0 --- ConflictSet.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/ConflictSet.cpp b/ConflictSet.cpp index 6448795..217da0e 100644 --- a/ConflictSet.cpp +++ b/ConflictSet.cpp @@ -211,9 +211,6 @@ struct Child { }; struct Node0 : Node { - // Sorted - uint8_t index[16]; // 16 so that we can use the same simd index search - // implementation as Node16 Node0() { this->type = Type::Node0; } uint8_t *partialKey() { return (uint8_t *)(this + 1); } };