mark expected assertion codepath

This commit is contained in:
Aaron Culliney 2018-04-07 11:16:15 -07:00
parent 234caa8c9c
commit 3318d159b5

View File

@ -78,7 +78,7 @@ void log_outputString(const char * const str);
# undef assert
# define assert(e) \
do { \
if ((e)) { \
if (LIKELY(e)) { \
/* ... */ \
} else { \
LOG( "!!! ASSERT !!! : " #e ); \