From 7474f47add2bde583013a7ef4aed57a61313c6f1 Mon Sep 17 00:00:00 2001 From: Michael Hemmer Date: Thu, 13 Mar 2008 14:01:20 +0000 Subject: [PATCH] rm bug in CGAL_test_assert --- Testsuite/include/CGAL/Testsuite/assert.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Testsuite/include/CGAL/Testsuite/assert.h b/Testsuite/include/CGAL/Testsuite/assert.h index e54f986bf36..676968db1a4 100644 --- a/Testsuite/include/CGAL/Testsuite/assert.h +++ b/Testsuite/include/CGAL/Testsuite/assert.h @@ -26,7 +26,7 @@ // except that NDEBUG and other macros do not affect it. #define CGAL_test_assert(EX) \ - ((EX)?(static_cast(0)): ::CGAL::assertion_fail( # EX , __FILE__, __LINE__, 0)) + ((EX)?(static_cast(0)): ::CGAL::assertion_fail( # EX , __FILE__, __LINE__)) #define CGAL_test_assert_msg(EX,MSG) \ ((EX)?(static_cast(0)): ::CGAL::assertion_fail( # EX , __FILE__, __LINE__, MSG))