gravatar
kpeter (Peter Kovacs)
kpeter@inf.elte.hu
Bug fix in assert.h (ticket #125)
0 1 0
default
1 file changed with 1 insertions and 1 deletions:
↑ Collapse diff ↑
Ignore white space 12 line context
... ...
@@ -234,13 +234,13 @@
234 234
#    define LEMON_FIXME(msg)                                            \
235 235
       (LEMON_ASSERT_HANDLER(__FILE__, __LINE__, LEMON_FUNCTION_NAME,   \
236 236
                             ::lemon::_assert_bits::cstringify(msg),    \
237 237
                             static_cast<const char*>(0)))
238 238

	
239 239
#    if LEMON_ENABLE_DEBUG
240
#      define LEMON_DEBUG(exp, msg)
240
#      define LEMON_DEBUG(exp, msg)                                     \
241 241
         (static_cast<void> (!!(exp) ? 0 : (                            \
242 242
           LEMON_ASSERT_HANDLER(__FILE__, __LINE__,                     \
243 243
                                LEMON_FUNCTION_NAME,                    \
244 244
                                ::lemon::_assert_bits::cstringify(msg), \
245 245
                                #exp), 0)))
246 246
#    else
0 comments (0 inline)