summaryrefslogtreecommitdiff
path: root/cpu.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-03-20 15:11:27 -0400
committerJeffrey Walton <noloader@gmail.com>2017-03-20 15:11:27 -0400
commit2ea91ba1b97c80b8c755c7409727504b8d496a23 (patch)
tree570d9cf188e22620f38cebe277e9261bffdd1974 /cpu.h
parentf502ee9218c3a090920bc1584334a3a8e3fbb043 (diff)
downloadcryptopp-git-2ea91ba1b97c80b8c755c7409727504b8d496a23.tar.gz
Fix ARM compile under VS2013
Diffstat (limited to 'cpu.h')
-rw-r--r--cpu.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu.h b/cpu.h
index 3c96457e..7c27c145 100644
--- a/cpu.h
+++ b/cpu.h
@@ -22,7 +22,7 @@
# if defined(__GNUC__)
# include <stdint.h>
# endif
-# if defined(__ARM_NEON)
+# if defined(__ARM_NEON) || defined(_MSC_VER)
# include <arm_neon.h>
# endif
# if defined(__GNUC__) && !defined(__apple_build_version__)