From 2657dd09c704502a28da31b5abb65efd195337df Mon Sep 17 00:00:00 2001 From: hartmann Date: Tue, 13 Apr 1999 17:21:38 +0000 Subject: [PATCH] Throw an exception in all cases, not only in debug mode; this allows to test this feature in runtime and use direct solvers if not present. git-svn-id: https://svn.dealii.org/trunk@1133 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/full_matrix.templates.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/lac/include/lac/full_matrix.templates.h b/deal.II/lac/include/lac/full_matrix.templates.h index 971ef49144..e90f277b78 100644 --- a/deal.II/lac/include/lac/full_matrix.templates.h +++ b/deal.II/lac/include/lac/full_matrix.templates.h @@ -1342,7 +1342,7 @@ FullMatrix::invert (const FullMatrix &M) } default: - Assert (false, ExcNotImplemented(dim_range)); + AssertThrow (false, ExcNotImplemented(dim_range)); }; }; -- 2.39.5