Skip to content

Commit 6dda027

Browse files
committed
remove defined(_WIN32) || defined(_WIN64) in x64 preprocessor conditions
1 parent 3c7be00 commit 6dda027

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

AES.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@
3939
#endif
4040
#endif
4141

42-
#if (defined(_WIN32) || defined(_WIN64) || defined(__x86_64) || defined(__x86_64__) || defined(__amd64) || defined(__amd64__)) && \
42+
#if (defined(__x86_64) || defined(__x86_64__) || defined(__amd64) || defined(__amd64__)) && \
4343
!defined(USE_CXX_AES) && !defined(USE_NEON_AES)
44-
#ifdef _MSC_VER
44+
#if defined(_MSC_VER)
4545
#include <intrin.h>
4646
#endif
4747

0 commit comments

Comments
 (0)