Index: src/libchcore/TBaseException.cpp =================================================================== diff -u -N -rb26ced3298e3e7e51d91f3ac70b56746786da83b -rc1f7af79a52133c6d4b14944c3370288be7f5af5 --- src/libchcore/TBaseException.cpp (.../TBaseException.cpp) (revision b26ced3298e3e7e51d91f3ac70b56746786da83b) +++ src/libchcore/TBaseException.cpp (.../TBaseException.cpp) (revision c1f7af79a52133c6d4b14944c3370288be7f5af5) @@ -32,29 +32,6 @@ ATLTRACE(_T("*** Base Exception is being thrown:\n\tMsg: %s\n\tError code: %d\n\tFile: %s\n\tLine number: %ld\n\tFunction: %s\n"), pszMsg, eErrorCode, pszFile, stLineNumber, pszFunction); } - TBaseException::TBaseException(const TBaseException& rSrc) : - m_eErrorCode(rSrc.m_eErrorCode), - m_pszMsg(rSrc.m_pszMsg), - m_pszFile(rSrc.m_pszFile), - m_pszFunction(rSrc.m_pszFunction), - m_stLineNumber(rSrc.m_stLineNumber) - { - } - - TBaseException& TBaseException::operator=(const TBaseException& rSrc) - { - if(this != &rSrc) - { - m_eErrorCode = rSrc.m_eErrorCode; - m_pszMsg = rSrc.m_pszMsg; - m_pszFile = rSrc.m_pszFile; - m_pszFunction = rSrc.m_pszFunction; - m_stLineNumber = rSrc.m_stLineNumber; - } - - return *this; - } - TBaseException::~TBaseException() { }