]> www.ginac.de Git - ginac.git/blobdiff - ginac/mul.cpp
the destructor, copy constructor, and assignment operator (which were the
[ginac.git] / ginac / mul.cpp
index 23927729895d3dfc5e9f0321044f8e42babb0b25..80901d773573f19973546880ea2378dceba82f3c 100644 (file)
@@ -48,28 +48,6 @@ mul::mul()
        tinfo_key = TINFO_mul;
 }
 
-mul::~mul()
-{
-       debugmsg("mul destructor",LOGLEVEL_DESTRUCT);
-       destroy(false);
-}
-
-mul::mul(const mul & other)
-{
-       debugmsg("mul copy constructor",LOGLEVEL_CONSTRUCT);
-       copy(other);
-}
-
-const mul & mul::operator=(const mul & other)
-{
-       debugmsg("mul operator=",LOGLEVEL_ASSIGNMENT);
-       if (this != &other) {
-               destroy(true);
-               copy(other);
-       }
-       return *this;
-}
-
 // protected
 
 void mul::copy(const mul & other)