From e5d4ae7c61b669a9562a65c1d9da11b724171c8b Mon Sep 17 00:00:00 2001
From: wolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Date: Thu, 30 Jun 2005 20:34:06 +0000
Subject: [PATCH] There's no point to print a stacktrace in what() -- this
 function is usually called at the place where an exception is caught, not
 where it is triggered...

git-svn-id: https://svn.dealii.org/trunk@11015 0785d39b-7218-0410-832d-ea1e28bc413d
---
 deal.II/base/source/exceptions.cc | 2 --
 1 file changed, 2 deletions(-)

diff --git a/deal.II/base/source/exceptions.cc b/deal.II/base/source/exceptions.cc
index c33ef814d0..36095e85d3 100644
--- a/deal.II/base/source/exceptions.cc
+++ b/deal.II/base/source/exceptions.cc
@@ -161,8 +161,6 @@ const char * ExceptionBase::what () const throw ()
                                        // put in exception specific data
       print_info (converter);
 
-      print_stack_trace (converter);      // put in stacktrace (if available)
-  
       converter << "--------------------------------------------------------"
                 << std::endl;
 #ifndef HAVE_STD_STRINGSTREAM
-- 
2.39.5