Index: src/libchcore/TWin32ErrorFormatter.h
===================================================================
diff -u -N -r387751793d274e49253e796ca7cec4f3d0cf07a9 -re96806b7f8ff7ca7e9f4afbea603e6351a3dc3e3
--- src/libchcore/TWin32ErrorFormatter.h	(.../TWin32ErrorFormatter.h)	(revision 387751793d274e49253e796ca7cec4f3d0cf07a9)
+++ src/libchcore/TWin32ErrorFormatter.h	(.../TWin32ErrorFormatter.h)	(revision e96806b7f8ff7ca7e9f4afbea603e6351a3dc3e3)
@@ -22,18 +22,17 @@
 #include "libchcore.h"
 #include "TString.h"
 
-BEGIN_CHCORE_NAMESPACE
-
-class LIBCHCORE_API TWin32ErrorFormatter
+namespace chcore
 {
-public:
-	static TString FormatWin32ErrorCode(DWORD dwErrorCode, bool bUseNumberFallback);
-	static TString FormatWin32ErrorCodeWithFallback(DWORD dwErrorCode, const wchar_t* pszModuleName, bool bUseNumberFallback);
+	class LIBCHCORE_API TWin32ErrorFormatter
+	{
+	public:
+		static TString FormatWin32ErrorCode(DWORD dwErrorCode, bool bUseNumberFallback);
+		static TString FormatWin32ErrorCodeWithFallback(DWORD dwErrorCode, const wchar_t* pszModuleName, bool bUseNumberFallback);
 
-private:
-	static TString FormatWin32ErrorCodeWithModule(DWORD dwErrorCode, HMODULE hModule, bool bUseNumberFallback);
-};
+	private:
+		static TString FormatWin32ErrorCodeWithModule(DWORD dwErrorCode, HMODULE hModule, bool bUseNumberFallback);
+	};
+}
 
-END_CHCORE_NAMESPACE
-
 #endif