Fix compile on CentOS 5

This commit is contained in:
Jeffrey Walton 2021-04-26 16:24:02 -04:00
parent ef3a9e8eea
commit b51383cc6c
No known key found for this signature in database
GPG Key ID: B36AB348921B1838

View File

@ -28,7 +28,10 @@
#endif
#ifndef CRYPTOPP_DISABLE_ASM
# if defined(__AVX__) || defined(__SSE2__)
# if defined(__SSE2__)
# include <emmintrin.h>
# endif
# if defined(__AVX__)
# include <immintrin.h>
# endif