]> www.ginac.de Git - ginac.git/blobdiff - ginac/fail.cpp
the destructor, copy constructor, and assignment operator (which were the
[ginac.git] / ginac / fail.cpp
index 8a281e8ab97a2c938242c63b3e2c1f9540bf0a09..c11180406ad3a654f2c0d31a1af726ada1d8758a 100644 (file)
@@ -42,28 +42,6 @@ fail::fail() : inherited(TINFO_fail)
        debugmsg("fail default constructor",LOGLEVEL_CONSTRUCT);
 }
 
-fail::~fail()
-{
-       debugmsg("fail destructor",LOGLEVEL_DESTRUCT);
-       destroy(false);
-}
-
-fail::fail(const fail & other)
-{
-       debugmsg("fail copy constructor",LOGLEVEL_CONSTRUCT);
-       copy(other);
-}
-
-const fail & fail::operator=(const fail & other)
-{
-       debugmsg("fail operator=",LOGLEVEL_ASSIGNMENT);
-       if (this != &other) {
-               destroy(true);
-               copy(other);
-       }
-       return *this;
-}
-
 // protected
 
 void fail::copy(const fail & other)