[ox/std] Cleanup OS constexpr/define order in defines
This commit is contained in:
parent
36de17bc2d
commit
d4e3af1464
6
deps/ox/src/ox/std/defines.hpp
vendored
6
deps/ox/src/ox/std/defines.hpp
vendored
@ -63,14 +63,14 @@ constexpr OS OS = OS::DragonFlyBSD;
|
|||||||
constexpr OS OS = OS::Linux;
|
constexpr OS OS = OS::Linux;
|
||||||
#define OX_OS_Linux
|
#define OX_OS_Linux
|
||||||
#elif defined(_WIN32)
|
#elif defined(_WIN32)
|
||||||
#define OX_OS_Windows
|
|
||||||
constexpr OS OS = OS::Windows;
|
constexpr OS OS = OS::Windows;
|
||||||
|
#define OX_OS_Windows
|
||||||
#elif defined(__APPLE__)
|
#elif defined(__APPLE__)
|
||||||
#define OX_OS_Darwin
|
|
||||||
constexpr OS OS = OS::Darwin;
|
constexpr OS OS = OS::Darwin;
|
||||||
|
#define OX_OS_Darwin
|
||||||
#else
|
#else
|
||||||
#define OX_OS_BareMetal
|
|
||||||
constexpr OS OS = OS::BareMetal;
|
constexpr OS OS = OS::BareMetal;
|
||||||
|
#define OX_OS_BareMetal
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user