diff options
author | Kargatum <dowlandtop@yandex.com> | 2019-11-15 23:27:31 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-15 23:27:31 +0700 |
commit | a3206c56dc7b2e7421d2dfaee56bad0a195d6c58 (patch) | |
tree | 82d54f7979f060f15d3984b250f30a14952af9b7 /src/common/Debugging/Errors.h | |
parent | f9a8de9be7678acb6b55d8fc573ba960d11c569c (diff) |
feat(Core/Misc): replace all prefix preprocessor defines from CompilerDefs with AC_ (#2419)
Diffstat (limited to 'src/common/Debugging/Errors.h')
-rw-r--r-- | src/common/Debugging/Errors.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/Debugging/Errors.h b/src/common/Debugging/Errors.h index 00ca02c1ee..1edfdcb759 100644 --- a/src/common/Debugging/Errors.h +++ b/src/common/Debugging/Errors.h @@ -29,7 +29,7 @@ namespace Trinity std::string GetDebugInfo(); -#if COMPILER == COMPILER_MICROSOFT +#if AC_COMPILER == AC_COMPILER_MICROSOFT #define ASSERT_BEGIN __pragma(warning(push)) __pragma(warning(disable: 4127)) #define ASSERT_END __pragma(warning(pop)) #else @@ -37,7 +37,7 @@ std::string GetDebugInfo(); #define ASSERT_END #endif -#if PLATFORM == PLATFORM_WINDOWS +#if AC_PLATFORM == AC_PLATFORM_WINDOWS #define EXCEPTION_ASSERTION_FAILURE 0xC0000420L #endif |