]> www.ginac.de Git - ginac.git/blobdiff - ginac/clifford.cpp
- more indentation fixes
[ginac.git] / ginac / clifford.cpp
index 742fd002698463c855ce02ff99942eb8e52d8d7f..02aff19b6ea0b9a11b675470924d79b50b50ed86 100644 (file)
@@ -50,7 +50,7 @@ clifford::clifford()
 clifford::~clifford()
 {
        debugmsg("clifford destructor",LOGLEVEL_DESTRUCT);
-       destroy(0);
+       destroy(false);
 }
 
 clifford::clifford(const clifford & other)
@@ -63,7 +63,7 @@ const clifford & clifford::operator=(const clifford & other)
 {
        debugmsg("clifford operator=",LOGLEVEL_ASSIGNMENT);
        if (this != &other) {
-               destroy(1);
+               destroy(true);
                copy(other);
        }
        return *this;