From 580e6bdcb8548c2ab6195400300fea94c71cc63e Mon Sep 17 00:00:00 2001 From: Reece Date: Mon, 15 Nov 2021 14:55:55 +0000 Subject: [PATCH] [*] refactor `bool kCurrent` to `bool kIs` --- AuroraEnvironment.hpp | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/AuroraEnvironment.hpp b/AuroraEnvironment.hpp index 100d3bf..bc53fa6 100644 --- a/AuroraEnvironment.hpp +++ b/AuroraEnvironment.hpp @@ -205,39 +205,39 @@ namespace Aurora::Build #endif #if defined(AURORA_IS_BSD_DERIVED) - static const bool kCurrentBSDDerived = true; + static const bool kIsBSDDerived = true; #else - static const bool kCurrentBSDDerived = false; + static const bool kIsBSDDerived = false; #endif #if defined(AURORA_IS_POSIX_DERIVED) - static const bool kCurrentPosixDerived = true; + static const bool kIsPosixDerived = true; #else - static const bool kCurrentPosixDerived = false; + static const bool kIsPosixDerived = false; #endif #if defined(AURORA_IS_BSD_DERIVED) - static const bool kCurrentBsdDerived = true; + static const bool kIsBsdDerived = true; #else - static const bool kCurrentBsdDerived = false; + static const bool kIsBsdDerived = false; #endif #if defined(AURORA_IS_XNU_DERIVED) - static const bool kCurrentXnuDerived = true; + static const bool kIsXnuDerived = true; #else - static const bool kCurrentXnuDerived = false; + static const bool kIsXnuDerived = false; #endif #if defined(AURORA_IS_LINUX_DERIVED) - static const bool kCurrentLinuxDerived = true; + static const bool kIsLinuxDerived = true; #else - static const bool kCurrentLinuxDerived = false; + static const bool kIsLinuxDerived = false; #endif #if defined(AURORA_IS_MODERNNT_DERIVED) - static const bool kCurrentNtDerived = true; + static const bool kIsNtDerived = true; #else - static const bool kCurrentNtDerived = false; + static const bool kIsNtDerived = false; #endif } \ No newline at end of file