Skip to content

Commit

Permalink
Merge pull request #16509 from tjhei/fix_warning
Browse files Browse the repository at this point in the history
fix compiler warning
  • Loading branch information
peterrum committed Jan 20, 2024
2 parents 068fe97 + 4d9c851 commit e6676da
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/fe/fe_q_base.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1557,7 +1557,8 @@ FE_Q_Base<dim, spacedim>::get_restriction_matrix(
internal::FE_Q_Base::increment_indices<dim>(j_indices,
dofs1d);
}
Assert(std::fabs(sum_check - 1) <
(void)sum_check;
Assert(std::fabs(sum_check - 1.0) <
std::max(eps,
5e-16 * std::sqrt(this->n_dofs_per_cell())),
ExcInternalError("The entries in a row of the local "
Expand Down

0 comments on commit e6676da

Please sign in to comment.