From 1b8158f19f63065b9e6ab78669cf73e8480b7d76 Mon Sep 17 00:00:00 2001 From: johanengelen Date: Sat, 17 Nov 2007 23:58:42 +0000 Subject: [PATCH] whitespace --- src/2geom/exception.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/2geom/exception.h b/src/2geom/exception.h index 1a031cab9..0791c8547 100644 --- a/src/2geom/exception.h +++ b/src/2geom/exception.h @@ -39,8 +39,7 @@ namespace Geom { // Base exception class, all 2geom exceptions should be derrived from this one. class Exception : public std::exception { public: - Exception(const char * message, const char *file, const int line) - { + Exception(const char * message, const char *file, const int line) { std::ostringstream os; os << "lib2geom exception: " << message << " (" << file << ":" << line << ")"; msgstr = os.str(); @@ -48,7 +47,7 @@ public: virtual ~Exception() throw() {} // necessary to destroy the string object!!! - virtual const char* what() const throw (){ + virtual const char* what() const throw () { return msgstr.c_str(); } protected: -- 2.30.2