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