Remove some unnecessary defines in Log.h

This commit is contained in:
Lioncash 2014-07-14 15:51:28 -04:00
parent c2cdc93515
commit 8087a89afd
1 changed files with 1 additions and 4 deletions

View File

@ -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)))