Skip to content

Commit

Permalink
Revert.
Browse files Browse the repository at this point in the history
  • Loading branch information
trivialfis committed Feb 23, 2022
1 parent 616f248 commit 6096582
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/common/row_set.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ class RowSetCollection {
/*! \brief return corresponding element set given the node_id */
inline const Elem& operator[](unsigned node_id) const {
const Elem& e = elem_of_each_node_[node_id];
CHECK(e.begin != nullptr) << "access element that is not in the set. node idx:" << node_id;
CHECK(e.begin != nullptr)
<< "access element that is not in the set";
return e;
}

Expand Down

0 comments on commit 6096582

Please sign in to comment.