Fix compiling with MSVC 2013 (typo mistake with the include file).

This commit is contained in:
cc9cii 2015-08-13 13:11:17 +10:00
parent bb250a236b
commit 2242920b85

View File

@ -5,7 +5,7 @@
#if (_MSC_VER >= 1900) #if (_MSC_VER >= 1900)
#include <unordered_map> #include <unordered_map>
#else #else
#include <boost/unordered_map.hpp> #include <boost/tr1/tr1/unordered_map>
#endif #endif
#elif defined HAVE_UNORDERED_MAP #elif defined HAVE_UNORDERED_MAP
#include <unordered_map> #include <unordered_map>