revert part of gustavo's patch for 'better breakpoints'
authorMathieu Lacage <mathieu.lacage@sophia.inria.fr>
Wed, 08 Aug 2007 12:33:14 +0200
changeset 1248 2d698655b11e
parent 1247 d4ce2731bcf5
child 1249 94a1eddc8196
revert part of gustavo's patch for 'better breakpoints'
src/core/assert.h
--- a/src/core/assert.h	Wed Aug 08 12:18:11 2007 +0200
+++ b/src/core/assert.h	Wed Aug 08 12:33:14 2007 +0200
@@ -28,6 +28,17 @@
 #include "breakpoint.h"
 
 /**
+ * \defgroup assert Assert
+ * \brief assert functions and macros
+ *
+ * The assert macros are used to verify
+ * at runtime that a certain condition is true. If it is
+ * not true, the program halts. These checks are built
+ * into the program only in debugging builds. They are
+ * removed in optimized builds.
+ */
+
+/**
  * \ingroup assert
  * \param condition condition to verifiy.
  *