diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-05-27 21:26:47 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-05-27 21:33:25 -0400 |
| commit | ee434d4f015522dd162cb343f541a6cd32f5bfcb (patch) | |
| tree | c3c038fb1de995789e66656eb25f942c6434a427 /Source/Core/Common/Logging | |
| parent | 686e29f2d3f1f6cbd58dd9104820747e2c0d629e (diff) | |
Common: Remove unnecessary ~9 year old LOGGING preprocessor define
This was added in 4bdb4aa0d1c8520488583ba79c9f5ab6e5656eca back in
2009-02-27. The only usage spot of this macro involves the same checks
that were used to define that preprocessor macro, so we can simply
remove the macro
Diffstat (limited to 'Source/Core/Common/Logging')
| -rw-r--r-- | Source/Core/Common/Logging/Log.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Logging/Log.h b/Source/Core/Common/Logging/Log.h index 7e7b295a52..54c9bc6d1f 100644 --- a/Source/Core/Common/Logging/Log.h +++ b/Source/Core/Common/Logging/Log.h @@ -81,7 +81,7 @@ void GenericLog(LogTypes::LOG_LEVELS level, LogTypes::LOG_TYPE type, const char* #endif ; -#if defined LOGGING || defined _DEBUG || defined DEBUGFAST +#if defined(_DEBUG) || defined(DEBUGFAST) #define MAX_LOGLEVEL LogTypes::LOG_LEVELS::LDEBUG #else #ifndef MAX_LOGLEVEL |
