X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Fcore%2Fexcept.cpp;fp=source%2Fcore%2Fexcept.cpp;h=bdcdd7df3da312b5f613630da9a67ec11ab8d0c5;hp=90deb4071b68983d5f2c487fee8a2192f1bb42af;hb=d5dd704b2576f878809e87dbb8ff8591b9bdbce4;hpb=47a232c3c19e718a30281d3ada8acc1b6212ea8c diff --git a/source/core/except.cpp b/source/core/except.cpp index 90deb40..bdcdd7d 100644 --- a/source/core/except.cpp +++ b/source/core/except.cpp @@ -20,14 +20,14 @@ Exception::Exception(const string &w): wot(w) { #ifdef WITH_EXCEPTION_BACKTRACE - bt=Debug::Backtrace::create(); + bt = Debug::Backtrace::create(); #endif } Exception &Exception::at(const std::string &w) throw() { - wer=w; - wot=wer+": "+wot; + wer = w; + wot = wer+": "+wot; return *this; }