From 61448a9b2f5d83c665c7c39dc56b22bc3094c554 Mon Sep 17 00:00:00 2001 From: Skyler Saleh Date: Sat, 17 Apr 2021 16:50:24 -0700 Subject: [PATCH] Apple M1: Refactor ArmCPUDetect.cpp Merges two nested #ifndefs into a single #if around hw cap includes. --- Source/Core/Common/ArmCPUDetect.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Source/Core/Common/ArmCPUDetect.cpp b/Source/Core/Common/ArmCPUDetect.cpp index 1cee6ad77b..4100df9f82 100644 --- a/Source/Core/Common/ArmCPUDetect.cpp +++ b/Source/Core/Common/ArmCPUDetect.cpp @@ -8,15 +8,13 @@ #include #include -#ifndef __APPLE__ -#ifndef _WIN32 +#if !defined(_WIN32) && !defined(__APPLE__) #ifndef __FreeBSD__ #include #endif #include #include #endif -#endif #include