]> git.tdb.fi Git - libs/core.git/blobdiff - source/core/except.cpp
Style updates
[libs/core.git] / source / core / except.cpp
index 90deb4071b68983d5f2c487fee8a2192f1bb42af..bdcdd7df3da312b5f613630da9a67ec11ab8d0c5 100644 (file)
@@ -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;
 }