Skip to content

Commit c6e3797

Browse files
committedSep 10, 2013
Remove assert warning in leveldb wonderland
1 parent 168fa2f commit c6e3797

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
 

‎src/debug.h

+8
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,14 @@ extern std::ostream dstream;
7272
extern std::ostream dstream_no_stderr;
7373
extern Nullstream dummyout;
7474

75+
/*
76+
Include assert.h and immediately undef assert so that it can't override
77+
our assert later on. leveldb/slice.h is a notable offender.
78+
*/
79+
80+
#include <assert.h>
81+
#undef assert
82+
7583
/*
7684
Assert
7785
*/

0 commit comments

Comments
 (0)
Please sign in to comment.