From 6d0f31d3e4f0d61dc5ace9677ad0a5dad43419d2 Mon Sep 17 00:00:00 2001 From: Ralf Hartmann Date: Mon, 10 Jan 2000 14:27:04 +0000 Subject: [PATCH] formatting update git-svn-id: https://svn.dealii.org/trunk@2181 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/include/base/exceptions.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/deal.II/base/include/base/exceptions.h b/deal.II/base/include/base/exceptions.h index 1ae7fd10b8..01bfce0994 100644 --- a/deal.II/base/include/base/exceptions.h +++ b/deal.II/base/include/base/exceptions.h @@ -493,7 +493,7 @@ class Exception2 : public ExceptionBase { \ public: \ Exception2 (const type1 a1, const type2 a2) : \ arg1 (a1), arg2(a2) {}; \ - virtual void PrintInfo (ostream &out) const { \ + virtual void PrintInfo (ostream &out) const { \ out outsequence << endl; \ }; \ private: \ @@ -512,7 +512,7 @@ class Exception3 : public ExceptionBase { \ public: \ Exception3 (const type1 a1, const type2 a2, const type3 a3) : \ arg1 (a1), arg2(a2), arg3(a3) {}; \ - virtual void PrintInfo (ostream &out) const { \ + virtual void PrintInfo (ostream &out) const { \ out outsequence << endl; \ }; \ private: \ @@ -533,7 +533,7 @@ class Exception4 : public ExceptionBase { \ Exception4 (const type1 a1, const type2 a2, \ const type3 a3, const type4 a4) : \ arg1 (a1), arg2(a2), arg3(a3), arg4(a4) {}; \ - virtual void PrintInfo (ostream &out) const { \ + virtual void PrintInfo (ostream &out) const { \ out outsequence << endl; \ }; \ private: \ @@ -555,7 +555,7 @@ class Exception5 : public ExceptionBase { \ Exception5 (const type1 a1, const type2 a2, const type3 a3, \ const type4 a4, const type5 a5) : \ arg1 (a1), arg2(a2), arg3(a3), arg4(a4), arg5(a5) {}; \ - virtual void PrintInfo (ostream &out) const { \ + virtual void PrintInfo (ostream &out) const { \ out outsequence << endl; \ }; \ private: \ -- 2.39.5