rm bug in CGAL_test_assert

This commit is contained in:
Michael Hemmer 2008-03-13 14:01:20 +00:00
parent 9dfbff50b8
commit 7474f47add
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@
// except that NDEBUG and other macros do not affect it. // except that NDEBUG and other macros do not affect it.
#define CGAL_test_assert(EX) \ #define CGAL_test_assert(EX) \
((EX)?(static_cast<void>(0)): ::CGAL::assertion_fail( # EX , __FILE__, __LINE__, 0)) ((EX)?(static_cast<void>(0)): ::CGAL::assertion_fail( # EX , __FILE__, __LINE__))
#define CGAL_test_assert_msg(EX,MSG) \ #define CGAL_test_assert_msg(EX,MSG) \
((EX)?(static_cast<void>(0)): ::CGAL::assertion_fail( # EX , __FILE__, __LINE__, MSG)) ((EX)?(static_cast<void>(0)): ::CGAL::assertion_fail( # EX , __FILE__, __LINE__, MSG))