GSdx: fixed vs2008 build errors

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4999 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
gabest11 2011-12-21 00:08:00 +00:00
parent 0b62c17d9c
commit 1691ab2cf0
1 changed files with 10 additions and 2 deletions

View File

@ -92,11 +92,19 @@
using namespace std;
#if defined(_MSC_VER) && _MSC_VER >= 1500 && _MSC_VER < 1600
#include <memory>
using namespace std::tr1;
#endif
#ifdef __GNUC__
#include <tr1/memory>
#include <tr1/memory>
using namespace std::tr1;
using namespace std::tr1;
#endif