Use the tr1 version of <tuple> when building with gcc

Originally committed to SVN as r5235.
This commit is contained in:
Thomas Goyne 2011-01-18 00:29:40 +00:00
parent c9656381f1
commit 3f9bead41a
1 changed files with 4 additions and 0 deletions

View File

@ -26,7 +26,11 @@
#include <memory>
#endif
#ifdef _WIN32
#include <tuple>
#else
#include <tr1/tuple>
#endif
#include "libaegisub/hotkey.h"