]> www.ginac.de Git - ginac.git/blobdiff - ginac/structure.pl
- more indentation fixes
[ginac.git] / ginac / structure.pl
index b43661d847bdb9e3464acc53811077bd452c669b..7521016a377e2013188261c485d0dd5ca74ac205 100755 (executable)
@@ -277,7 +277,7 @@ ${STRUCTURE}::${STRUCTURE}()
 ${STRUCTURE}::~${STRUCTURE}()
 {
        debugmsg("${STRUCTURE} destructor",LOGLEVEL_DESTRUCT);
-       destroy(0);
+       destroy(false);
 }
 
 ${STRUCTURE}::${STRUCTURE}(${STRUCTURE} const & other)
@@ -290,7 +290,7 @@ ${STRUCTURE} const & ${STRUCTURE}::operator=(${STRUCTURE} const & other)
 {
        debugmsg("${STRUCTURE} operator=",LOGLEVEL_ASSIGNMENT);
        if (this != &other) {
-               destroy(1);
+               destroy(true);
                copy(other);
        }
        return *this;