Index: src/libchcore/TBaseException.cpp =================================================================== diff -u -N -ra4635addad389b9e117679437a3e1b64a739ea96 -rd9527df01ee91b35d9a5fdccb80ded25a9c8265f --- src/libchcore/TBaseException.cpp (.../TBaseException.cpp) (revision a4635addad389b9e117679437a3e1b64a739ea96) +++ src/libchcore/TBaseException.cpp (.../TBaseException.cpp) (revision d9527df01ee91b35d9a5fdccb80ded25a9c8265f) @@ -27,8 +27,8 @@ m_pszMsg(pszMsg), m_bDeleteMsg(false), m_pszFile(pszFile), - m_stLineNumber(stLineNumber), - m_pszFunction(pszFunction) + m_pszFunction(pszFunction), + m_stLineNumber(stLineNumber) { 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); } @@ -38,8 +38,8 @@ m_pszMsg(nullptr), m_bDeleteMsg(false), m_pszFile(pszFile), - m_stLineNumber(stLineNumber), - m_pszFunction(pszFunction) + m_pszFunction(pszFunction), + m_stLineNumber(stLineNumber) { 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); if (pszMsg)