summaryrefslogtreecommitdiff
path: root/celt
diff options
context:
space:
mode:
authorRalph Giles <giles@thaumas.net>2020-06-11 21:35:07 -0700
committerRalph Giles <giles@thaumas.net>2020-06-11 21:35:07 -0700
commitfc13987b1ad0d55908528598d0f30b364cc62030 (patch)
treed445f61f27271ca8a9ae689dcbb923816b7c7b66 /celt
parent09f8f05bce8914f6df3a0d7d6feca256ca5f12dd (diff)
downloadopus-fc13987b1ad0d55908528598d0f30b364cc62030.tar.gz
Fix intrin0.h include guard.
This lighter-weight intrinsics header is available starting with Microsoft Visual Studio 2017, so the previous change to allow this header failed when building with Visual Studio 2015. Restores the appveyor continuous integration build.
Diffstat (limited to 'celt')
-rw-r--r--celt/ecintrin.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/celt/ecintrin.h b/celt/ecintrin.h
index 0b4ca71e..66a4c36e 100644
--- a/celt/ecintrin.h
+++ b/celt/ecintrin.h
@@ -49,7 +49,7 @@
This macro should only be used for implementing ec_ilog(), if it is defined.
All other code should use EC_ILOG() instead.*/
#if defined(_MSC_VER) && (_MSC_VER >= 1400)
-#if defined(_MSC_VER) && (_MSC_VER >= 1900)
+#if defined(_MSC_VER) && (_MSC_VER >= 1910)
# include <intrin0.h> /* Improve compiler throughput. */
#else
# include <intrin.h>