[*] refactor bool kCurrent to bool kIs

This commit is contained in:
Reece Wilson 2021-11-15 14:55:55 +00:00
parent 37619e19c7
commit 580e6bdcb8

View File

@ -205,39 +205,39 @@ namespace Aurora::Build
#endif #endif
#if defined(AURORA_IS_BSD_DERIVED) #if defined(AURORA_IS_BSD_DERIVED)
static const bool kCurrentBSDDerived = true; static const bool kIsBSDDerived = true;
#else #else
static const bool kCurrentBSDDerived = false; static const bool kIsBSDDerived = false;
#endif #endif
#if defined(AURORA_IS_POSIX_DERIVED) #if defined(AURORA_IS_POSIX_DERIVED)
static const bool kCurrentPosixDerived = true; static const bool kIsPosixDerived = true;
#else #else
static const bool kCurrentPosixDerived = false; static const bool kIsPosixDerived = false;
#endif #endif
#if defined(AURORA_IS_BSD_DERIVED) #if defined(AURORA_IS_BSD_DERIVED)
static const bool kCurrentBsdDerived = true; static const bool kIsBsdDerived = true;
#else #else
static const bool kCurrentBsdDerived = false; static const bool kIsBsdDerived = false;
#endif #endif
#if defined(AURORA_IS_XNU_DERIVED) #if defined(AURORA_IS_XNU_DERIVED)
static const bool kCurrentXnuDerived = true; static const bool kIsXnuDerived = true;
#else #else
static const bool kCurrentXnuDerived = false; static const bool kIsXnuDerived = false;
#endif #endif
#if defined(AURORA_IS_LINUX_DERIVED) #if defined(AURORA_IS_LINUX_DERIVED)
static const bool kCurrentLinuxDerived = true; static const bool kIsLinuxDerived = true;
#else #else
static const bool kCurrentLinuxDerived = false; static const bool kIsLinuxDerived = false;
#endif #endif
#if defined(AURORA_IS_MODERNNT_DERIVED) #if defined(AURORA_IS_MODERNNT_DERIVED)
static const bool kCurrentNtDerived = true; static const bool kIsNtDerived = true;
#else #else
static const bool kCurrentNtDerived = false; static const bool kIsNtDerived = false;
#endif #endif
} }