Make sure NDEBUG is undefined

This commit is contained in:
Ion Gaztañaga
2017-12-10 23:06:20 +01:00
parent 67fddea741
commit 93039d18d7

View File

@@ -11,6 +11,11 @@
#include <boost/container/detail/workaround.hpp>
//[doc_custom_tree
#include <boost/container/set.hpp>
//Make sure assertions are active
#ifdef NDEBUG
#undef NDEBUG
#endif
#include <cassert>
int main ()