Move comment to above field it's commenting on
This commit is contained in:
@@ -217,6 +217,7 @@ struct Node0 : Node {
|
|||||||
|
|
||||||
struct Node3 : Node {
|
struct Node3 : Node {
|
||||||
constexpr static auto kMaxNodes = 3;
|
constexpr static auto kMaxNodes = 3;
|
||||||
|
// Sorted
|
||||||
uint8_t index[kMaxNodes];
|
uint8_t index[kMaxNodes];
|
||||||
Child children[kMaxNodes];
|
Child children[kMaxNodes];
|
||||||
Node3() { this->type = Type::Node3; }
|
Node3() { this->type = Type::Node3; }
|
||||||
@@ -224,8 +225,8 @@ struct Node3 : Node {
|
|||||||
};
|
};
|
||||||
|
|
||||||
struct Node16 : Node {
|
struct Node16 : Node {
|
||||||
// Sorted
|
|
||||||
constexpr static auto kMaxNodes = 16;
|
constexpr static auto kMaxNodes = 16;
|
||||||
|
// Sorted
|
||||||
uint8_t index[kMaxNodes];
|
uint8_t index[kMaxNodes];
|
||||||
Child children[kMaxNodes];
|
Child children[kMaxNodes];
|
||||||
Node16() { this->type = Type::Node16; }
|
Node16() { this->type = Type::Node16; }
|
||||||
|
Reference in New Issue
Block a user