From 258161bab7de7fdc5517ca283c9da1e133c76543 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 23 Jan 2024 16:51:31 -0500 Subject: [PATCH] DolphinAnalytics: Use #ifdef instead of #if for platform testing --- Source/Core/Core/DolphinAnalytics.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/DolphinAnalytics.cpp b/Source/Core/Core/DolphinAnalytics.cpp index 5593a66963..a7bb39d394 100644 --- a/Source/Core/Core/DolphinAnalytics.cpp +++ b/Source/Core/Core/DolphinAnalytics.cpp @@ -293,7 +293,7 @@ void DolphinAnalytics::MakeBaseBuilder() }; // Under arm64, we need to call objc_msgSend to recieve a struct. // On x86_64, we need to explicitly call objc_msgSend_stret for a struct. -#if _M_ARM_64 +#ifdef _M_ARM_64 #define msgSend objc_msgSend #else #define msgSend objc_msgSend_stret