From: Ralf Hartmann Date: Thu, 25 Aug 2005 07:26:17 +0000 (+0000) Subject: Add missing return statement in ExceptionBase::what. X-Git-Tag: v8.0.0~13266 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9eb1166f370acf7c3800225a1af7d169ccbd5f82;p=dealii.git Add missing return statement in ExceptionBase::what. git-svn-id: https://svn.dealii.org/trunk@11321 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/source/exceptions.cc b/deal.II/base/source/exceptions.cc index f70b54a549..f24bb6aafa 100644 --- a/deal.II/base/source/exceptions.cc +++ b/deal.II/base/source/exceptions.cc @@ -254,6 +254,7 @@ const char * ExceptionBase::what () const throw () std::abort (); } + return 0; }