Skip to content

Commit

Permalink
Changed assert to verify
Browse files Browse the repository at this point in the history
  • Loading branch information
brbass committed Nov 11, 2024
1 parent 66f8915 commit d6e8787
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DataBase/DataBase.cc
Original file line number Diff line number Diff line change
Expand Up @@ -851,7 +851,7 @@ nodeListIndex(const NodeList<Dimension>& nodeList) const {
ConstNodeListIterator itr = find(nodeListBegin(),
nodeListEnd(),
&nodeList);
ASSERT(itr != nodeListEnd());
VERIFY(itr != nodeListEnd());
return std::distance(nodeListBegin(), itr);
}

Expand Down

0 comments on commit d6e8787

Please sign in to comment.