From f46656a21354dcc1a4e7313b5ce5c2bfe2b716f3 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sun, 28 Feb 2021 14:31:32 -0600 Subject: [PATCH] [ox/std] Fix Darwin OS detection (synced from 7b6fad806241452693d94e9baba133bcac2bf1fe) --- src/ox/std/defines.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ox/std/defines.hpp b/src/ox/std/defines.hpp index 5af4b6cea..79cdf7339 100644 --- a/src/ox/std/defines.hpp +++ b/src/ox/std/defines.hpp @@ -65,7 +65,7 @@ constexpr OS OS = OS::Linux; #elif defined(_WIN32) #define OX_OS_Windows constexpr OS OS = OS::Windows; -#elif defined(__apple__) +#elif defined(__APPLE__) #define OX_OS_Darwin constexpr OS OS = OS::Darwin; #else