summaryrefslogtreecommitdiff
path: root/src/util/cpp11.h
diff options
context:
space:
mode:
authormazocomp <33579456+mazocomp@users.noreply.github.com>2018-04-20 20:55:23 +0300
committerSmallJoker <mk939@ymail.com>2018-06-03 17:32:00 +0200
commitf72490950a178ecf667181eb8c2b2243ba400e8d (patch)
treeb5adbb95ce42ee0038680f2a61afd44402826b31 /src/util/cpp11.h
parent9d3fa874be3509477243272cb23d892879348194 (diff)
downloadminetest-f72490950a178ecf667181eb8c2b2243ba400e8d.tar.gz
minetest-f72490950a178ecf667181eb8c2b2243ba400e8d.tar.bz2
minetest-f72490950a178ecf667181eb8c2b2243ba400e8d.zip
Fix C++11 feature detection for undefined _MSC_VER (#7255)
Diffstat (limited to 'src/util/cpp11.h')
-rw-r--r--src/util/cpp11.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/cpp11.h b/src/util/cpp11.h
index 14913cb86..17903f2e3 100644
--- a/src/util/cpp11.h
+++ b/src/util/cpp11.h
@@ -20,7 +20,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#ifndef MT_CPP11_HEADER
#define MT_CPP11_HEADER
-#if __cplusplus < 201103L || _MSC_VER < 1600
+#if __cplusplus < 201103L || (defined(_MSC_VER) && _MSC_VER < 1600)
#define USE_CPP11_FAKE_KEYWORD
#endif