Remove unused includes of tr1/unordered_map etc.

They cause build errors with libc++, and we always use
boost::unordered_map instead.

This was SVN commit r14177.
This commit is contained in:
Ykkrosh 2013-11-14 20:47:59 +00:00
parent cfba68f8d2
commit 8ecfbd0899

View File

@ -68,18 +68,4 @@
#include <valarray>
#endif // !MINIMAL_PCH
#if !MINIMAL_PCH
// STL extensions
#if GCC_VERSION >= 402 // (see comment in stl.h about GCC versions)
# include <tr1/unordered_map>
# include <tr1/unordered_set>
#elif GCC_VERSION
# include <ext/hash_map>
# include <ext/hash_set>
#else
# include <hash_map>
# include <hash_set>
#endif
#endif // !MINIMAL_PCH
#endif // #ifndef INCLUDED_PCH_STDLIB