From 08b2b7f41a700a8b28053817bce8ad29418edd30 Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Wed, 13 Mar 2024 12:38:16 -0700 Subject: [PATCH] Move comment to above field it's commenting on --- ConflictSet.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ConflictSet.cpp b/ConflictSet.cpp index 8e9ee12..2ae6646 100644 --- a/ConflictSet.cpp +++ b/ConflictSet.cpp @@ -217,6 +217,7 @@ struct Node0 : Node { struct Node3 : Node { constexpr static auto kMaxNodes = 3; + // Sorted uint8_t index[kMaxNodes]; Child children[kMaxNodes]; Node3() { this->type = Type::Node3; } @@ -224,8 +225,8 @@ struct Node3 : Node { }; struct Node16 : Node { - // Sorted constexpr static auto kMaxNodes = 16; + // Sorted uint8_t index[kMaxNodes]; Child children[kMaxNodes]; Node16() { this->type = Type::Node16; }