[*] Fix typo

This commit is contained in:
Reece Wilson 2024-01-18 18:56:39 +00:00
parent 3e4f84e76e
commit 5a3f70f244

View File

@ -272,7 +272,7 @@ namespace Aurora::Build
ePython, ePython,
eIM_START = 15, eIM_START = 15,
eIM_SPIR_V = 15, eIM_SPIR_V = 15,
eIM_MISL = 16, eIM_MSIL = 16,
eIM_JVM = 17, eIM_JVM = 17,
eIM_V8 = 18, eIM_V8 = 18,
eIM_USER_CUSTOM = 19, eIM_USER_CUSTOM = 19,
@ -300,25 +300,25 @@ namespace Aurora::Build
#if defined(AURORA_IS_BSD_DERIVED) #if defined(AURORA_IS_BSD_DERIVED)
static const bool kIsBSDDerived = true; static const bool kIsBSDDerived = true;
static const bool kIsBsdDerived = true;
#else #else
static const bool kIsBSDDerived = false; static const bool kIsBSDDerived = false;
static const bool kIsBsdDerived = false;
#endif #endif
#if defined(AURORA_IS_POSIX_DERIVED) #if defined(AURORA_IS_POSIX_DERIVED)
static const bool kIsPOSIXDerived = true;
static const bool kIsPosixDerived = true; static const bool kIsPosixDerived = true;
#else #else
static const bool kIsPOSIXDerived = false;
static const bool kIsPosixDerived = false; static const bool kIsPosixDerived = false;
#endif #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) #if defined(AURORA_IS_XNU_DERIVED)
static const bool kIsXNUDerived = true;
static const bool kIsXnuDerived = true; static const bool kIsXnuDerived = true;
#else #else
static const bool kIsXNUDerived = false;
static const bool kIsXnuDerived = false; static const bool kIsXnuDerived = false;
#endif #endif
@ -329,8 +329,10 @@ namespace Aurora::Build
#endif #endif
#if defined(AURORA_IS_MODERNNT_DERIVED) #if defined(AURORA_IS_MODERNNT_DERIVED)
static const bool kIsNTDerived = true;
static const bool kIsNtDerived = true; static const bool kIsNtDerived = true;
#else #else
static const bool kIsNTDerived = false;
static const bool kIsNtDerived = false; static const bool kIsNtDerived = false;
#endif #endif