Skip to content

Commit

Permalink
Merge pull request #14239 from kronbichler/fix_inaccurate_assertion
Browse files Browse the repository at this point in the history
MatrixFree: Fix assertion in presence of FE_Nothing
  • Loading branch information
peterrum committed Sep 5, 2022
2 parents 94d28e7 + f0208f5 commit 982a1c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/matrix_free/dof_info.cc
Original file line number Diff line number Diff line change
Expand Up @@ -863,7 +863,7 @@ namespace internal
vectorization_length);
AssertIndexRange(
row_starts[i * vectorization_length * n_components].first,
this->dof_indices_interleaved.size());
this->dof_indices_interleaved.size() + 1);
AssertIndexRange(
row_starts[i * vectorization_length * n_components].first +
ndofs * vectorization_length,
Expand Down

0 comments on commit 982a1c2

Please sign in to comment.