Be more consistent about TaggedNodePointer vs Node*

This commit is contained in:
2024-11-15 16:30:05 -08:00
parent 661ffcd843
commit 2777e016ff

View File

@@ -1695,7 +1695,7 @@ TaggedNodePointer &getOrCreateChild(TaggedNodePointer &self, TrivialSpan &key,
}
Node *nextPhysical(Node *node) {
auto nextChild = getFirstChild(node);
Node *nextChild = getFirstChild(node);
if (nextChild != nullptr) {
return nextChild;
}
@@ -1713,7 +1713,7 @@ Node *nextPhysical(Node *node) {
}
Node *nextLogical(Node *node) {
auto nextChild = getFirstChild(node);
Node *nextChild = getFirstChild(node);
if (nextChild != nullptr) {
node = nextChild;
goto downLeftSpine;