From 8087a89afdc171199dc945c5da2040a1ac0151f3 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 14 Jul 2014 15:51:28 -0400 Subject: [PATCH] Remove some unnecessary defines in Log.h --- Source/Core/Common/Logging/Log.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Source/Core/Common/Logging/Log.h b/Source/Core/Common/Logging/Log.h index e7282e6b9c..fa67058b86 100644 --- a/Source/Core/Common/Logging/Log.h +++ b/Source/Core/Common/Logging/Log.h @@ -77,12 +77,9 @@ enum LOG_LEVELS static const char LOG_LEVEL_TO_CHAR[7] = "-NEWID"; -#define LOGTYPES_LEVELS LogTypes::LOG_LEVELS -#define LOGTYPES_TYPE LogTypes::LOG_TYPE - } // namespace -void GenericLog(LOGTYPES_LEVELS level, LOGTYPES_TYPE type, +void GenericLog(LogTypes::LOG_LEVELS level, LogTypes::LOG_TYPE type, const char *file, int line, const char *fmt, ...) #ifdef __GNUC__ __attribute__((format(printf, 5, 6)))