[*] Build regressions

This commit is contained in:
Reece Wilson 2023-12-27 14:14:23 +00:00
parent c9a6483edf
commit 3e4f84e76e

View File

@ -25,7 +25,7 @@ extern "C"
#define AUENVHPP_START_ENUM(platform, ...) \
enum class platform \
{ \
e ## platform ## Invalid = -1, \
eEnumInvalid = -1, \
__VA_ARGS__ \
};
#endif
@ -48,7 +48,7 @@ namespace Aurora::Build
#elif defined(AURORA_COMPILER_INTEL)
static const ECompiler kCurrentCompiler = ECompiler::eIntelInside;
#else
static const ECompiler kCurrentCompiler = ECompiler::eECompilerEnumInvalid;
static const ECompiler kCurrentCompiler = ECompiler::eEnumInvalid;
#endif
enum class EPlatformLTS
@ -159,7 +159,7 @@ namespace Aurora::Build
#elif defined(AURORA_PLATFORM_WII_U)
static const EPlatform kCurrentPlatform = EPlatform::ePlatformWiiU;
#else
static const EPlatform kCurrentPlatform = EPlatform::eEPlatformEnumInvalid;
static const EPlatform kCurrentPlatform = EPlatform::eEnumInvalid;
#endif
AUENVHPP_START_ENUM(EVendor,
@ -184,7 +184,7 @@ namespace Aurora::Build
#elif defined(VENDOR_UNKNOWN)
static const EVendor kCurrentVendor = EVendor::eUnknown;
#else
static const EVendor kCurrentVendor = EVendor::eEVendorEnumInvalid;
static const EVendor kCurrentVendor = EVendor::eEnumInvalid;
#endif
AUENVHPP_START_ENUM(EArchitecture,
@ -200,7 +200,7 @@ namespace Aurora::Build
#elif defined(AURORA_ARCH_ARM)
static const EArchitecture kCurrentArchitecture = EArchitecture::eAArch64;
#else
static const EArchitecture kCurrentArchitecture = EArchitecture::eEArchitectureEnumInvalid;
static const EArchitecture kCurrentArchitecture = EArchitecture::eEnumInvalid;
#endif
@ -239,7 +239,7 @@ namespace Aurora::Build
#elif defined(AURORA_ABI_APPLE)
static const EABI kCurrentABI = EABI::eAppleArm;
#else
static const EABI kCurrentABI = EABI::eEABIEnumInvalid;
static const EABI kCurrentABI = EABI::eEnumInvalid;
#endif
AUENVHPP_START_ENUM(ECPUEndian,