summaryrefslogtreecommitdiff
path: root/aria_simd.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2019-01-04 11:33:28 -0500
committerJeffrey Walton <noloader@gmail.com>2019-01-04 11:33:28 -0500
commit822ca11579facd6cd7107f4b709405c025ed9e0b (patch)
tree54fe0ce99dbdc9816f95cf7d4f6e4b718fba3967 /aria_simd.cpp
parent02f7fda54b001a824817cc51a44bd02c6466c7bf (diff)
downloadcryptopp-git-822ca11579facd6cd7107f4b709405c025ed9e0b.tar.gz
Cleanup headers after Microsoft ARM64 port
Diffstat (limited to 'aria_simd.cpp')
-rw-r--r--aria_simd.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/aria_simd.cpp b/aria_simd.cpp
index 6222439b..ecdc9a65 100644
--- a/aria_simd.cpp
+++ b/aria_simd.cpp
@@ -14,12 +14,11 @@
# include <tmmintrin.h>
#endif
-#if (CRYPTOPP_ARM_NEON_AVAILABLE)
+// C1189: error: This header is specific to ARM targets
+#if (CRYPTOPP_ARM_NEON_AVAILABLE) && !defined(_M_ARM64)
# include <arm_neon.h>
#endif
-// Can't use CRYPTOPP_ARM_XXX_AVAILABLE because too many
-// compilers don't follow ACLE conventions for the include.
#if (CRYPTOPP_ARM_ACLE_AVAILABLE)
# include <stdint.h>
# include <arm_acle.h>