diff -r 765619b7cbb2 -r 81cfc04531e8 lemon/assert.h --- a/lemon/assert.h Sun Jul 13 19:51:02 2008 +0100 +++ b/lemon/assert.h Sun Jul 13 20:09:47 2008 +0100 @@ -151,8 +151,9 @@ /// - \c LEMON_ASSERT_CUSTOM The user can define own assertion handler /// function. /// \code -/// void custom_assert_handler(const char* file, int line, const char* function, -/// const char* message, const char* assertion); +/// void custom_assert_handler(const char* file, int line, +/// const char* function, const char* message, +/// const char* assertion); /// \endcode /// The name of the function should be defined as the \c /// LEMON_CUSTOM_ASSERT_HANDLER macro name. @@ -185,7 +186,7 @@ /// \see LEMON_ASSERT # define LEMON_FIXME(msg) \ (LEMON_ASSERT_HANDLER(__FILE__, __LINE__, LEMON_FUNCTION_NAME, \ - ::lemon::_assert_bits::cstringify(msg), \ + ::lemon::_assert_bits::cstringify(msg), \ static_cast(0))) /// \ingroup exceptions @@ -240,7 +241,7 @@ (static_cast (!!(exp) ? 0 : ( \ LEMON_ASSERT_HANDLER(__FILE__, __LINE__, \ LEMON_FUNCTION_NAME, \ - ::lemon::_assert_bits::cstringify(msg), \ + ::lemon::_assert_bits::cstringify(msg), \ #exp), 0))) # else # define LEMON_DEBUG(exp, msg) (static_cast(0))