From: SmallJoker Date: Sat, 8 Oct 2016 14:25:34 +0000 (+0200) Subject: Ensure std::unordered_ be used on MSVC 2010 too (#4600) X-Git-Tag: 0.4.15~190 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=refs%2Fpull%2F4551%2Fhead;p=oweals%2Fminetest.git Ensure std::unordered_ be used on MSVC 2010 too (#4600) --- diff --git a/src/util/cpp11_container.h b/src/util/cpp11_container.h index 7ac2fc371..88317c9c4 100644 --- a/src/util/cpp11_container.h +++ b/src/util/cpp11_container.h @@ -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