Remove uses of __DATE__ and __TIME__

This commit is contained in:
James Cowgill
2015-11-14 00:52:41 +00:00
parent 19e3fba59f
commit 386159c74e
5 changed files with 5 additions and 9 deletions

View File

@ -37,8 +37,8 @@
#endif
#define _assert_(_a_) \
_assert_msg_(MASTER_LOG, _a_, "Error...\n\n Line: %d\n File: %s\n Time: %s\n\nIgnore and continue?", \
__LINE__, __FILE__, __TIME__)
_assert_msg_(MASTER_LOG, _a_, "Error...\n\n Line: %d\n File: %s\n\nIgnore and continue?", \
__LINE__, __FILE__)
#define _dbg_assert_(_t_, _a_) \
if (MAX_LOGLEVEL >= LogTypes::LOG_LEVELS::LDEBUG) \