From a2f7be5dcd8df2ae370e13a335435ed2801a9216 Mon Sep 17 00:00:00 2001 From: heister Date: Tue, 1 May 2012 16:32:55 +0000 Subject: [PATCH] step-37: fix throwing assertion git-svn-id: https://svn.dealii.org/trunk@25475 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-37/step-37.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/examples/step-37/step-37.cc b/deal.II/examples/step-37/step-37.cc index dd638c7f18..eb8224b20b 100644 --- a/deal.II/examples/step-37/step-37.cc +++ b/deal.II/examples/step-37/step-37.cc @@ -1056,7 +1056,7 @@ void LaplaceOperator::transform (number* result) const transformation[5] * result[2]; } else - ExcNotImplemented(); + AssertThrow(false, ExcNotImplemented()); } // The final function in this group @@ -1099,7 +1099,7 @@ LaplaceOperator::operator=(const Tensor<2,dim> &tensor) ExcInternalError()); } else - ExcNotImplemented(); + AssertThrow(false, ExcNotImplemented()); return *this; } -- 2.39.5