[*] 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,
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