From 213a9adcffe33c9a15993a31d142d74d2b4cc128 Mon Sep 17 00:00:00 2001 From: spycrab Date: Wed, 12 Feb 2020 00:07:56 +0100 Subject: CMake: Fix building ARM64 on Windows --- Source/Core/Common/Hash.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Source/Core/Common/Hash.cpp') diff --git a/Source/Core/Common/Hash.cpp b/Source/Core/Common/Hash.cpp index ea2375f3c7..525f0b21e2 100644 --- a/Source/Core/Common/Hash.cpp +++ b/Source/Core/Common/Hash.cpp @@ -11,9 +11,13 @@ #include "Common/CommonFuncs.h" #include "Common/Intrinsics.h" -#if defined(_M_ARM_64) && !defined(_MSC_VER) +#ifdef _M_ARM_64 +#ifdef _MSC_VER +#include +#else #include #endif +#endif namespace Common { -- cgit v1.2.3