summaryrefslogtreecommitdiff
path: root/rijndael_simd.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2021-03-09 15:06:19 -0500
committerJeffrey Walton <noloader@gmail.com>2021-03-09 15:06:19 -0500
commit95f0d9d3962bfc9046c1fd99d4c724b77d9a3ab4 (patch)
tree53b953696273e9b1579c7cadfb610a7ae629740e /rijndael_simd.cpp
parentdc28413a044622bdd6ab79f5fd04aebf2a38dcb6 (diff)
downloadcryptopp-git-95f0d9d3962bfc9046c1fd99d4c724b77d9a3ab4.tar.gz
Fix Apple M1 failed compile after GH #1015
Diffstat (limited to 'rijndael_simd.cpp')
-rw-r--r--rijndael_simd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/rijndael_simd.cpp b/rijndael_simd.cpp
index 90dee994..916c7f4d 100644
--- a/rijndael_simd.cpp
+++ b/rijndael_simd.cpp
@@ -33,11 +33,11 @@
// Android makes <arm_acle.h> available with ARMv7-a
#if (CRYPTOPP_BOOL_ARMV8)
+# include "adv_simd.h"
# if (CRYPTOPP_ARM_NEON_HEADER)
# include <arm_neon.h>
# endif
# if (CRYPTOPP_ARM_ACLE_HEADER)
-# include "adv_simd.h"
# include <stdint.h>
# include <arm_acle.h>
# endif