Make sure assert's are executed also in release mode when examples are tested in release mode.

This commit is contained in:
Ion Gaztañaga
2026-01-03 22:55:57 +01:00
parent d62ead405d
commit d93289e050
19 changed files with 53 additions and 17 deletions

View File

@@ -7,6 +7,10 @@
// See http://www.boost.org/libs/interprocess for documentation.
//
//////////////////////////////////////////////////////////////////////////////
#ifdef NDEBUG
#undef NDEBUG
#endif
//[doc_managed_aligned_allocation
#include <boost/interprocess/managed_shared_memory.hpp>
#include <cassert>