1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-11 01:42:22 +03:00

Skip trying to include 'intrin.h' when compiling for WinCE with MSVC.

FossilOrigin-Name: 6db90ca2b4ac806b42532072ebe6b2a4a7b9713d
This commit is contained in:
mistachkin
2015-07-14 21:56:17 +00:00
parent 532f179cab
commit 65a88fcb42
3 changed files with 8 additions and 8 deletions

View File

@@ -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)