aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormistachkin <mistachkin@noemail.net>2015-07-14 21:56:17 +0000
committermistachkin <mistachkin@noemail.net>2015-07-14 21:56:17 +0000
commit65a88fcb421c234849ecd2542ed198d3995a80be (patch)
treef16587d443d2d4d66297733743fc0636607af35d /src
parent532f179cabf9af8facf244648776f8b17f98f846 (diff)
downloadsqlite-65a88fcb421c234849ecd2542ed198d3995a80be.tar.gz
sqlite-65a88fcb421c234849ecd2542ed198d3995a80be.zip
Skip trying to include 'intrin.h' when compiling for WinCE with MSVC.
FossilOrigin-Name: 6db90ca2b4ac806b42532072ebe6b2a4a7b9713d
Diffstat (limited to 'src')
-rw-r--r--src/sqliteInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 199a1cc66..862b2f68d 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -189,7 +189,7 @@
** Make sure that the compiler intrinsics we desire are enabled when
** compiling with an appropriate version of MSVC.
*/
-#if defined(_MSC_VER) && _MSC_VER>=1300
+#if defined(_MSC_VER) && _MSC_VER>=1300 && !defined(_WIN32_WCE)
# include <intrin.h>
# pragma intrinsic(_byteswap_ushort)
# pragma intrinsic(_byteswap_ulong)