From: maier Date: Tue, 16 Apr 2013 14:42:55 +0000 (+0000) Subject: Reindent X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=abfcec2347dad3c70c8d3e57bb686a7260b54534;p=dealii-svn.git Reindent git-svn-id: https://svn.dealii.org/trunk@29303 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/base/exceptions.h b/deal.II/include/deal.II/base/exceptions.h index 6970b99df1..94867d5767 100644 --- a/deal.II/include/deal.II/base/exceptions.h +++ b/deal.II/include/deal.II/base/exceptions.h @@ -70,7 +70,7 @@ public: /** * Get exception name. */ - const char * get_exc_name() const; + const char *get_exc_name() const; /** * Print out the general part of the error information. diff --git a/deal.II/source/base/exceptions.cc b/deal.II/source/base/exceptions.cc index 14689ea8d1..10526f1b3d 100644 --- a/deal.II/source/base/exceptions.cc +++ b/deal.II/source/base/exceptions.cc @@ -146,7 +146,7 @@ void ExceptionBase::set_fields (const char *f, -const char * ExceptionBase::get_exc_name () const +const char *ExceptionBase::get_exc_name () const { return exc; } @@ -281,7 +281,7 @@ namespace deal_II_exceptions void abort (const ExceptionBase &exc) { - if(dealii::deal_II_exceptions::abort_on_exception) + if (dealii::deal_II_exceptions::abort_on_exception) { //* Print the error message and bail out: std::cerr << exc.what() << std::endl;