summaryrefslogtreecommitdiffstats
path: root/include/c99_compat.h
diff options
context:
space:
mode:
authorJose Fonseca <[email protected]>2018-09-07 13:27:47 +0100
committerJose Fonseca <[email protected]>2018-09-10 10:10:16 +0100
commit52ca32121bc99d61cc30077fe37f85bdb4c47659 (patch)
tree894d4df2931b255fee1cfba3ba8066a3da9c2e9d /include/c99_compat.h
parentd5f934522d6ae30bbb1b5320309aa29eb720008f (diff)
Require Visual Studio 2015.
We no longer need or use Visual Studio 2013. https://ci.appveyor.com/project/jrfonseca/mesa/build/52 Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'include/c99_compat.h')
-rw-r--r--include/c99_compat.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/c99_compat.h b/include/c99_compat.h
index 81621a7fabc..b681725b2b0 100644
--- a/include/c99_compat.h
+++ b/include/c99_compat.h
@@ -36,8 +36,8 @@
*/
#if defined(_MSC_VER)
-# if _MSC_VER < 1800 || (_MSC_FULL_VER < 180031101 && !defined(__clang__))
-# error "Microsoft Visual Studio 2013 Update 4 or higher required"
+# if _MSC_VER < 1900
+# error "Microsoft Visual Studio 2015 or higher required"
# endif
/*