Index: ext/libicpf/src/libicpf/exception.cpp =================================================================== diff -u -N -re31dc31ccf2010abee81ddc399d65b57e4803278 -r0185dd929933bee0f578d6ca52aaa605a48c9f89 --- ext/libicpf/src/libicpf/exception.cpp (.../exception.cpp) (revision e31dc31ccf2010abee81ddc399d65b57e4803278) +++ ext/libicpf/src/libicpf/exception.cpp (.../exception.cpp) (revision 0185dd929933bee0f578d6ca52aaa605a48c9f89) @@ -40,6 +40,7 @@ * \param[in] uiReserved - currently unused; must be 0 */ exception::exception(const tchar_t* pszDesc, const tchar_t* pszFilename, const tchar_t* pszFunction, uint_t uiLine, uint_t uiAppCode, uint_t uiSystemCode, uint_t uiReserved) : + std::exception(), m_pszDesc(NULL), m_pszFilename(NULL), m_pszFunction(NULL), @@ -70,6 +71,7 @@ * \param[in] uiReserved - currently unused; must be 0 */ exception::exception(tchar_t* pszDesc, const tchar_t* pszFilename, const tchar_t* pszFunction, uint_t uiLine, uint_t uiAppCode, uint_t uiSystemCode, uint_t uiReserved) : + std::exception(), m_pszDesc(pszDesc), m_pszFilename(NULL), m_pszFunction(NULL), @@ -91,6 +93,7 @@ * \param[in] rSrc - source exception to copy data from */ exception::exception(const exception& rSrc) : + std::exception(rSrc), m_pszDesc(NULL), m_pszFilename(NULL), m_pszFunction(NULL),