]> git.lizzy.rs Git - dragonfireclient.git/commitdiff
Ensure std::unordered_ be used on MSVC 2010 too (#4600)
authorSmallJoker <SmallJoker@users.noreply.github.com>
Sat, 8 Oct 2016 14:25:34 +0000 (16:25 +0200)
committerZeno- <kde.psych@gmail.com>
Sat, 8 Oct 2016 14:25:34 +0000 (00:25 +1000)
src/util/cpp11_container.h

index 7ac2fc371907de6c064e95517ef3d8e4f9f9756c..88317c9c4b00c6038ecfda2a7025983b6cb3f186 100644 (file)
@@ -24,7 +24,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 #define USE_UNORDERED_CONTAINERS
 #endif
 
-#if _MSC_VER >= 1800
+#if _MSC_VER >= 1600
 #define USE_UNORDERED_CONTAINERS
 #endif