Skip to content

Commit

Permalink
chore: fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
romange committed Dec 12, 2024
1 parent 2202871 commit 67aaaaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qlist.cc
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ string QList::Pop(Where where) {
}
DelPackedIndex(node, pos);
}
DCHECK(head_->prev->next == nullptr);
DCHECK(head_ == nullptr || head_->prev->next == nullptr);
return res;
}

Expand Down

0 comments on commit 67aaaaf

Please sign in to comment.