[ox/std] Fix Darwin OS detection

This commit is contained in:
Gary Talent 2021-02-28 14:31:32 -06:00
parent 936c922c1e
commit 7b6fad8062

View File

@ -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