No caller of CheckRangeRightSide::downLeftSpine has null n

This commit is contained in:
2024-03-18 16:03:41 -07:00
parent ddeb059968
commit c31eebd5de

View File

@@ -2013,10 +2013,7 @@ struct CheckRangeRightSide {
bool downLeftSpine() {
phase = DownLeftSpine;
if (n == nullptr) {
ok = true;
return true;
}
assert(n != nullptr);
return false;
}
};