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