Merge pull request #401 from stweil/windows

tlog: Remove unused macro TLOG_FATAL
This commit is contained in:
zdenop 2016-08-29 21:02:06 +02:00 committed by GitHub
commit d093ed40cc

View File

@ -38,12 +38,4 @@ DECLARE_INT_PARAM_FLAG(tlog_level);
#define TLOG_IS_ON(level) (FLAGS_tlog_level >= level)
#define TLOG_FATAL(msg, ...) \
{ \
tprintf(msg); \
ASSERT_FAILED.error("", ABORT, "in file %s, line %d", \
__FILE__, __LINE__); \
}
#endif // TESSERACT_TRAINING_TLOG_H_