DCHECK/CHECK
Summary: Debug checks should be checks because otherwise tests in release fail Reviewers: buda Reviewed By: buda Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D1348
This commit is contained in:
parent
1edeb655a6
commit
43ce227eec
@ -186,7 +186,7 @@ class DynamicBitset {
|
||||
|
||||
while (k < chunk->low()) {
|
||||
chunk = chunk->next_;
|
||||
DCHECK(chunk != nullptr) << "chunk is nullptr";
|
||||
CHECK(chunk != nullptr) << "chunk is nullptr";
|
||||
}
|
||||
k -= chunk->low();
|
||||
return *chunk;
|
||||
|
Loading…
Reference in New Issue
Block a user