Skip to content
Snippets Groups Projects
Unverified Commit 7947d3bc authored by Tobias Leibner's avatar Tobias Leibner
Browse files

[container.common] fix clang format

parent 3dddb42b
No related branches found
No related tags found
No related merge requests found
......@@ -903,7 +903,7 @@ private:
size_t get_entry_index(const size_t rr, const size_t cc, const bool throw_if_not_in_pattern = true) const
{
const auto& row_offset = row_pointers_->operator[](rr);
const auto& next_row_offset = row_pointers_->operator[](rr+1);
const auto& next_row_offset = row_pointers_->operator[](rr + 1);
const auto column_indices_it = column_indices_->begin() + row_offset;
const auto column_indices_it_end = column_indices_->begin() + next_row_offset;
const auto entry_it = std::find(column_indices_it, column_indices_it_end, cc);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment