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() { bool downLeftSpine() {
phase = DownLeftSpine; phase = DownLeftSpine;
if (n == nullptr) { assert(n != nullptr);
ok = true;
return true;
}
return false; return false;
} }
}; };