Skip to content

Commit

Permalink
Merge pull request #14512 from luzpaz/typos/asser
Browse files Browse the repository at this point in the history
Fix typos in source function name
  • Loading branch information
tamiko committed Dec 1, 2022
2 parents 9465d3a + 63e454c commit f3d24b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/deal.II/lac/trilinos_solver.h
Original file line number Diff line number Diff line change
Expand Up @@ -1234,15 +1234,15 @@ namespace TrilinosWrappers
Teuchos::SerialDenseMatrix<int, value_type> &,
const bool = false)
{
Asser(false, ExcNotImplemented());
Assert(false, ExcNotImplemented());
}

virtual int
revealRank(
Teuchos::SerialDenseMatrix<int, value_type> &,
const typename Teuchos::ScalarTraits<value_type>::magnitudeType &)
{
Asser(false, ExcNotImplemented());
Assert(false, ExcNotImplemented());
}

# endif
Expand Down

0 comments on commit f3d24b0

Please sign in to comment.