Skip to content

Commit 902cf2d

Browse files
committed
remove merge messages
1 parent f1717ac commit 902cf2d

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

include/collection.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -428,15 +428,11 @@ static const char *__file_logging_name = _logging_name;
428428

429429
#ifdef DEBUG
430430
#define DEBUG_ASSERT(__cond) assert(__cond)
431-
<<<<<<< HEAD
432-
#define DEBUG_ASSERT_MSG(__cond, __msg) assert((__cond) && __msg)
433-
=======
434431
#define DEBUG_ASSERT_MSG(__cond, __msg) assert((__cond) && (__msg))
435432
#define LOG_ERROR(fmtstring, ...) fprintf(stderr, "[%s] " fmtstring, __file_logging_name, ##__VA_ARGS__)
436433
#define LOG_ERROR_UNPREFIXED(fmtstring, ...) fprintf(stderr, fmtstring, ##__VA_ARGS__)
437434
#define LOG_DEBUG(fmtstring, ...) fprintf(stderr, "[%s] " fmtstring, __file_logging_name, ##__VA_ARGS__)
438435
#define LOG_DEBUG_UNPREFIXED(fmtstring, ...) fprintf(stderr, fmtstring, ##__VA_ARGS__)
439-
>>>>>>> 0289437 (improve logging a bit)
440436
#else
441437
#define DEBUG_ASSERT(__cond) do {} while (0)
442438
#define DEBUG_ASSERT_MSG(__cond, __msg) do {} while (0)

0 commit comments

Comments
 (0)