diff --git a/ConflictSet.cpp b/ConflictSet.cpp index 57ae817..b82e748 100644 --- a/ConflictSet.cpp +++ b/ConflictSet.cpp @@ -1734,7 +1734,7 @@ Node *nextPhysical(Node *node) { if (node == nullptr) { return nullptr; } - auto nextChild = getChildGeq(node, index + 1); + Node *nextChild = getChildGeq(node, index + 1); if (nextChild != nullptr) { return nextChild; } @@ -1753,7 +1753,7 @@ Node *nextLogical(Node *node) { if (node == nullptr) { return nullptr; } - auto nextChild = getChildGeq(node, index + 1); + Node *nextChild = getChildGeq(node, index + 1); if (nextChild != nullptr) { node = nextChild; goto downLeftSpine;