lemon/assert.h
changeset 210 81cfc04531e8
parent 209 765619b7cbb2
child 212 1ae84dea7d09
     1.1 --- a/lemon/assert.h	Sun Jul 13 19:51:02 2008 +0100
     1.2 +++ b/lemon/assert.h	Sun Jul 13 20:09:47 2008 +0100
     1.3 @@ -151,8 +151,9 @@
     1.4  /// - \c LEMON_ASSERT_CUSTOM The user can define own assertion handler
     1.5  ///   function.
     1.6  ///   \code
     1.7 -///     void custom_assert_handler(const char* file, int line, const char* function,
     1.8 -///                                const char* message, const char* assertion);
     1.9 +///     void custom_assert_handler(const char* file, int line,
    1.10 +///                                const char* function, const char* message,
    1.11 +///                                const char* assertion);
    1.12  ///   \endcode
    1.13  ///   The name of the function should be defined as the \c
    1.14  ///   LEMON_CUSTOM_ASSERT_HANDLER macro name.
    1.15 @@ -185,7 +186,7 @@
    1.16  /// \see LEMON_ASSERT
    1.17  #  define LEMON_FIXME(msg)                                                \
    1.18    (LEMON_ASSERT_HANDLER(__FILE__, __LINE__, LEMON_FUNCTION_NAME,        \
    1.19 -                        ::lemon::_assert_bits::cstringify(msg),                \
    1.20 +                        ::lemon::_assert_bits::cstringify(msg),          \
    1.21                          static_cast<const char*>(0)))
    1.22  
    1.23  /// \ingroup exceptions
    1.24 @@ -240,7 +241,7 @@
    1.25           (static_cast<void> (!!(exp) ? 0 : (         \
    1.26             LEMON_ASSERT_HANDLER(__FILE__, __LINE__,  \
    1.27                                  LEMON_FUNCTION_NAME, \
    1.28 -                                ::lemon::_assert_bits::cstringify(msg),        \
    1.29 +                                ::lemon::_assert_bits::cstringify(msg),     \
    1.30                                  #exp), 0)))
    1.31  #    else
    1.32  #      define LEMON_DEBUG(exp, msg) (static_cast<void>(0))