Unimplemented warnings should always log, even if not a debug build

This commit is contained in:
Luke Usher 2016-11-15 21:42:09 +00:00
parent 8aa099f2a3
commit 3e1f3d2073
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ extern thread_local std::string _logPrefix;
#define LOG_FUNC_ONE_ARG_OUT(arg) LOG_FUNC_BEGIN LOG_FUNC_ARG_OUT(arg) LOG_FUNC_END #define LOG_FUNC_ONE_ARG_OUT(arg) LOG_FUNC_BEGIN LOG_FUNC_ARG_OUT(arg) LOG_FUNC_END
#define UNIMPLEMENTED() \ #define UNIMPLEMENTED() \
do { if (_DEBUG_TRACE) if(g_bPrintfOn) { \ do { if(g_bPrintfOn) { \
std::cout << __func__ << " ignored!\n"; \ std::cout << __func__ << " ignored!\n"; \
} } while (0) } } while (0)