Unimplemented warnings should always log, even if not a debug build
This commit is contained in:
parent
8aa099f2a3
commit
3e1f3d2073
|
@ -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)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue