Index: src/libchcore/TSQLiteException.cpp
===================================================================
diff -u -rb1ecc12ba4c1f2a7b4acd6e82fc4193535e55ff0 -re96806b7f8ff7ca7e9f4afbea603e6351a3dc3e3
--- src/libchcore/TSQLiteException.cpp	(.../TSQLiteException.cpp)	(revision b1ecc12ba4c1f2a7b4acd6e82fc4193535e55ff0)
+++ src/libchcore/TSQLiteException.cpp	(.../TSQLiteException.cpp)	(revision e96806b7f8ff7ca7e9f4afbea603e6351a3dc3e3)
@@ -19,26 +19,25 @@
 #include "stdafx.h"
 #include "TSQLiteException.h"
 
-BEGIN_CHCORE_NAMESPACE
-
-namespace sqlite
+namespace chcore
 {
-	TSQLiteException::TSQLiteException(EGeneralErrors eErrorCode, int iSQLiteError, const wchar_t* pszMsg, const wchar_t* pszFile, size_t stLineNumber, const wchar_t* pszFunction) :
-		TBaseException(eErrorCode, pszMsg, pszFile, stLineNumber, pszFunction),
-		m_iSQLiteError(iSQLiteError)
+	namespace sqlite
 	{
-	}
+		TSQLiteException::TSQLiteException(EGeneralErrors eErrorCode, int iSQLiteError, const wchar_t* pszMsg, const wchar_t* pszFile, size_t stLineNumber, const wchar_t* pszFunction) :
+			TBaseException(eErrorCode, pszMsg, pszFile, stLineNumber, pszFunction),
+			m_iSQLiteError(iSQLiteError)
+		{
+		}
 
-	TSQLiteException::TSQLiteException(EGeneralErrors eErrorCode, int iSQLiteError, const char* pszMsg, const wchar_t* pszFile, size_t stLineNumber, const wchar_t* pszFunction) :
-		TBaseException(eErrorCode, pszMsg, pszFile, stLineNumber, pszFunction),
-		m_iSQLiteError(iSQLiteError)
-	{
-	}
+		TSQLiteException::TSQLiteException(EGeneralErrors eErrorCode, int iSQLiteError, const char* pszMsg, const wchar_t* pszFile, size_t stLineNumber, const wchar_t* pszFunction) :
+			TBaseException(eErrorCode, pszMsg, pszFile, stLineNumber, pszFunction),
+			m_iSQLiteError(iSQLiteError)
+		{
+		}
 
-	int TSQLiteException::GetSQLiteError() const
-	{
-		return m_iSQLiteError;
+		int TSQLiteException::GetSQLiteError() const
+		{
+			return m_iSQLiteError;
+		}
 	}
 }
-
-END_CHCORE_NAMESPACE