From 5a3f70f244e8b6d19f81a0f7029a3960941681c4 Mon Sep 17 00:00:00 2001 From: Jamie Reece Wilson Date: Thu, 18 Jan 2024 18:56:39 +0000 Subject: [PATCH] [*] Fix typo --- AuroraEnvironment.hpp | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/AuroraEnvironment.hpp b/AuroraEnvironment.hpp index 7c60977..7445a69 100644 --- a/AuroraEnvironment.hpp +++ b/AuroraEnvironment.hpp @@ -272,7 +272,7 @@ namespace Aurora::Build ePython, eIM_START = 15, eIM_SPIR_V = 15, - eIM_MISL = 16, + eIM_MSIL = 16, eIM_JVM = 17, eIM_V8 = 18, eIM_USER_CUSTOM = 19, @@ -300,25 +300,25 @@ namespace Aurora::Build #if defined(AURORA_IS_BSD_DERIVED) static const bool kIsBSDDerived = true; + static const bool kIsBsdDerived = true; #else static const bool kIsBSDDerived = false; + static const bool kIsBsdDerived = false; #endif #if defined(AURORA_IS_POSIX_DERIVED) + static const bool kIsPOSIXDerived = true; static const bool kIsPosixDerived = true; #else + static const bool kIsPOSIXDerived = false; static const bool kIsPosixDerived = false; #endif - - #if defined(AURORA_IS_BSD_DERIVED) - static const bool kIsBsdDerived = true; - #else - static const bool kIsBsdDerived = false; - #endif - + #if defined(AURORA_IS_XNU_DERIVED) + static const bool kIsXNUDerived = true; static const bool kIsXnuDerived = true; #else + static const bool kIsXNUDerived = false; static const bool kIsXnuDerived = false; #endif @@ -329,8 +329,10 @@ namespace Aurora::Build #endif #if defined(AURORA_IS_MODERNNT_DERIVED) + static const bool kIsNTDerived = true; static const bool kIsNtDerived = true; #else + static const bool kIsNTDerived = false; static const bool kIsNtDerived = false; #endif