Index: src/libchcore/TSQLiteException.h
===================================================================
diff -u -rb1ecc12ba4c1f2a7b4acd6e82fc4193535e55ff0 -re96806b7f8ff7ca7e9f4afbea603e6351a3dc3e3
--- src/libchcore/TSQLiteException.h	(.../TSQLiteException.h)	(revision b1ecc12ba4c1f2a7b4acd6e82fc4193535e55ff0)
+++ src/libchcore/TSQLiteException.h	(.../TSQLiteException.h)	(revision e96806b7f8ff7ca7e9f4afbea603e6351a3dc3e3)
@@ -25,23 +25,22 @@
 #define THROW_SQLITE_EXCEPTION(error_code, sqlite_error_code, err_msg)\
 	throw TSQLiteException(error_code, sqlite_error_code, err_msg, __FILEW__, __LINE__, __FUNCTIONW__)
 
-BEGIN_CHCORE_NAMESPACE
-
-namespace sqlite
+namespace chcore
 {
-	class TSQLiteException : public TBaseException
+	namespace sqlite
 	{
-	public:
-		TSQLiteException(EGeneralErrors eErrorCode, int iSQLiteError, const wchar_t* pszMsg, const wchar_t* pszFile, size_t stLineNumber, const wchar_t* pszFunction);
-		TSQLiteException(EGeneralErrors eErrorCode, int iSQLiteError, const char* pszMsg, const wchar_t* pszFile, size_t stLineNumber, const wchar_t* pszFunction);
+		class TSQLiteException : public TBaseException
+		{
+		public:
+			TSQLiteException(EGeneralErrors eErrorCode, int iSQLiteError, const wchar_t* pszMsg, const wchar_t* pszFile, size_t stLineNumber, const wchar_t* pszFunction);
+			TSQLiteException(EGeneralErrors eErrorCode, int iSQLiteError, const char* pszMsg, const wchar_t* pszFile, size_t stLineNumber, const wchar_t* pszFunction);
 
-		int GetSQLiteError() const;
+			int GetSQLiteError() const;
 
-	private:
-		int m_iSQLiteError;
-	};
+		private:
+			int m_iSQLiteError;
+		};
+	}
 }
 
-END_CHCORE_NAMESPACE
-
 #endif