ref: fc13987b1ad0d55908528598d0f30b364cc62030
parent: 09f8f05bce8914f6df3a0d7d6feca256ca5f12dd
author: Ralph Giles <giles@thaumas.net>
date: Thu Jun 11 17:35:07 EDT 2020
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.
--- 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>