]> www.ginac.de Git - ginac.git/blobdiff - ginac/fail.cpp
- more indentation fixes
[ginac.git] / ginac / fail.cpp
index 37baafba9b593d1ac6669bd2b747d8d4281a2da1..2cea9eb1a49e9f32b5b027cd9d4b4995be3b3fe3 100644 (file)
@@ -45,7 +45,7 @@ fail::fail() : inherited(TINFO_fail)
 fail::~fail()
 {
        debugmsg("fail destructor",LOGLEVEL_DESTRUCT);
-       destroy(0);
+       destroy(false);
 }
 
 fail::fail(const fail & other)
@@ -58,7 +58,7 @@ const fail & fail::operator=(const fail & other)
 {
        debugmsg("fail operator=",LOGLEVEL_ASSIGNMENT);
        if (this != &other) {
-               destroy(1);
+               destroy(true);
                copy(other);
        }
        return *this;