From adbf41f849da186057edfbd1873f49433dc5efd2 Mon Sep 17 00:00:00 2001
From: Boris Kolpackov <boris@codesynthesis.com>
Date: Thu, 22 Sep 2011 13:43:20 +0200
Subject: Make sure NDEBUG is not defined

---
 libcommon/common/common.hxx | 6 ++++++
 1 file changed, 6 insertions(+)

(limited to 'libcommon/common')

diff --git a/libcommon/common/common.hxx b/libcommon/common/common.hxx
index 6ace845..6ae33d4 100644
--- a/libcommon/common/common.hxx
+++ b/libcommon/common/common.hxx
@@ -15,6 +15,12 @@
 #include <common/config.hxx>
 #include <common/export.hxx>
 
+// Make sure assert() is not diabled.
+//
+#ifdef NDEBUG
+#  error ODB tests require enabled assert(); un-define the NDEBUG macro
+#endif
+
 LIBCOMMON_EXPORT std::auto_ptr<odb::database>
 create_database (int& argc,
                  char* argv[],
-- 
cgit v1.1