From ae9ae7783becccc10f375fd2f7dfb5972e7eb56b Mon Sep 17 00:00:00 2001 From: Xawotihs Date: Thu, 16 Dec 2010 18:24:39 +0000 Subject: [PATCH] gcc does not like iomanip stuff without namespace around --- JGE/include/DebugRoutines.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/JGE/include/DebugRoutines.h b/JGE/include/DebugRoutines.h index e68fa3e22..ef0a3f496 100644 --- a/JGE/include/DebugRoutines.h +++ b/JGE/include/DebugRoutines.h @@ -14,6 +14,8 @@ #if defined (WIN32) || defined (LINUX) #ifdef _DEBUG +using namespace std; + template std::string ToHex(T* pointer) {