Move comment to above field it's commenting on

This commit is contained in:
2024-03-13 12:38:16 -07:00
parent 26bd8b94cc
commit 08b2b7f41a

View File

@@ -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; }