diff options
author | SmallJoker <SmallJoker@users.noreply.github.com> | 2016-10-08 16:25:34 +0200 |
---|---|---|
committer | Zeno- <kde.psych@gmail.com> | 2016-10-09 00:25:34 +1000 |
commit | 0baea8c25cb04bcbeca5ae532a00d877628f6b06 (patch) | |
tree | 440ca9038e53c1b975b91d90ff978218b005d7db /src/util | |
parent | 656faf7373587bc59b47986a28dbd2fce4c45474 (diff) | |
download | minetest-0baea8c25cb04bcbeca5ae532a00d877628f6b06.tar.gz minetest-0baea8c25cb04bcbeca5ae532a00d877628f6b06.tar.bz2 minetest-0baea8c25cb04bcbeca5ae532a00d877628f6b06.zip |
Ensure std::unordered_ be used on MSVC 2010 too (#4600)
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/cpp11_container.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 |