Skip to content

Commit

Permalink
Fix compile on CentOS 5
Browse files Browse the repository at this point in the history
  • Loading branch information
noloader committed Apr 26, 2021
1 parent ef3a9e8 commit b51383c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion misc.cpp
Expand Up @@ -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

Expand Down

0 comments on commit b51383c

Please sign in to comment.