Explain assert
This commit is contained in:
@@ -1541,6 +1541,7 @@ struct __attribute__((visibility("hidden"))) ConflictSet::Impl {
|
|||||||
void setOldestVersion(int64_t oldestVersion) {
|
void setOldestVersion(int64_t oldestVersion) {
|
||||||
this->oldestVersion = oldestVersion;
|
this->oldestVersion = oldestVersion;
|
||||||
Node *prev = firstGeq(root, removalKey).n;
|
Node *prev = firstGeq(root, removalKey).n;
|
||||||
|
// There's no way to erase removalKey without introducing a key after it
|
||||||
assert(prev != nullptr);
|
assert(prev != nullptr);
|
||||||
while (keyUpdates-- > 0) {
|
while (keyUpdates-- > 0) {
|
||||||
Node *n = nextLogical(prev);
|
Node *n = nextLogical(prev);
|
||||||
|
Reference in New Issue
Block a user