Remove assert warning in leveldb wonderland

This commit is contained in:
Kahrl 2013-09-10 18:28:26 +02:00
parent 168fa2ffe0
commit c6e3797c1a
1 changed files with 8 additions and 0 deletions

View File

@ -72,6 +72,14 @@ extern std::ostream dstream;
extern std::ostream dstream_no_stderr;
extern Nullstream dummyout;
/*
Include assert.h and immediately undef assert so that it can't override
our assert later on. leveldb/slice.h is a notable offender.
*/
#include <assert.h>
#undef assert
/*
Assert
*/