From 0fcdec99ba0b17b722106d2a8807d877dc3b4201 Mon Sep 17 00:00:00 2001 From: kanschat Date: Tue, 18 Jul 2006 18:24:13 +0000 Subject: [PATCH] remove bug that avoided showing all exceptions in regression tests git-svn-id: https://svn.dealii.org/trunk@13387 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/source/exceptions.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/deal.II/base/source/exceptions.cc b/deal.II/base/source/exceptions.cc index ff6bd208ef..03d0aafee5 100644 --- a/deal.II/base/source/exceptions.cc +++ b/deal.II/base/source/exceptions.cc @@ -400,6 +400,8 @@ namespace deal_II_exceptions } else if(deal_II_exceptions::abort_on_exception == true) std::abort (); + else + --n_treated_exceptions; } -- 2.39.5