Index: src/libchcore/TBaseException.h =================================================================== diff -u -N -ra4635addad389b9e117679437a3e1b64a739ea96 -rb26ced3298e3e7e51d91f3ac70b56746786da83b --- src/libchcore/TBaseException.h (.../TBaseException.h) (revision a4635addad389b9e117679437a3e1b64a739ea96) +++ src/libchcore/TBaseException.h (.../TBaseException.h) (revision b26ced3298e3e7e51d91f3ac70b56746786da83b) @@ -32,9 +32,10 @@ { public: TBaseException(EGeneralErrors eErrorCode, const wchar_t* pszMsg, const wchar_t* pszFile, size_t stLineNumber, const wchar_t* pszFunction); - TBaseException(EGeneralErrors eErrorCode, const char* pszMsg, const wchar_t* pszFile, size_t stLineNumber, const wchar_t* pszFunction); - TBaseException() = delete; + TBaseException(const TBaseException& rSrc); + TBaseException& operator=(const TBaseException&); + virtual ~TBaseException(); // error information @@ -55,7 +56,6 @@ // where it happened? const wchar_t* m_pszMsg; - bool m_bDeleteMsg; const wchar_t* m_pszFile; const wchar_t* m_pszFunction;