From 1691ab2cf08c5eedc6445e6b86b9f548d56dda96 Mon Sep 17 00:00:00 2001 From: gabest11 Date: Wed, 21 Dec 2011 00:08:00 +0000 Subject: [PATCH] GSdx: fixed vs2008 build errors git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4999 96395faa-99c1-11dd-bbfe-3dabce05a288 --- plugins/GSdx/stdafx.h | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/plugins/GSdx/stdafx.h b/plugins/GSdx/stdafx.h index 3158713a6a..9e256e0378 100644 --- a/plugins/GSdx/stdafx.h +++ b/plugins/GSdx/stdafx.h @@ -92,11 +92,19 @@ using namespace std; +#if defined(_MSC_VER) && _MSC_VER >= 1500 && _MSC_VER < 1600 + + #include + + using namespace std::tr1; + +#endif + #ifdef __GNUC__ -#include + #include -using namespace std::tr1; + using namespace std::tr1; #endif