summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Hash.cpp
diff options
context:
space:
mode:
authorStenzek <stenzek@gmail.com>2019-11-26 15:31:45 +1100
committerStenzek <stenzek@gmail.com>2019-12-28 19:20:41 +1000
commitd744c5a148f5a477b41b63bceac0558a498ef989 (patch)
tree475743122047bf92e00afd44711ef9be65e43565 /Source/Core/Common/Hash.cpp
parent6fcb1c6c464c1fcf16104b21efb69176dfff7841 (diff)
Compile fixes for Windows-on-ARM64
Diffstat (limited to 'Source/Core/Common/Hash.cpp')
-rw-r--r--Source/Core/Common/Hash.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Hash.cpp b/Source/Core/Common/Hash.cpp
index 193ff5257b..ea2375f3c7 100644
--- a/Source/Core/Common/Hash.cpp
+++ b/Source/Core/Common/Hash.cpp
@@ -11,7 +11,7 @@
#include "Common/CommonFuncs.h"
#include "Common/Intrinsics.h"
-#ifdef _M_ARM_64
+#if defined(_M_ARM_64) && !defined(_MSC_VER)
#include <arm_acle.h>
#endif