diff --git a/STL_Extension/include/CGAL/assertions.h b/STL_Extension/include/CGAL/assertions.h index 4a1fa738ca4..ce82a267f4e 100644 --- a/STL_Extension/include/CGAL/assertions.h +++ b/STL_Extension/include/CGAL/assertions.h @@ -79,8 +79,8 @@ inline bool possibly(Uncertain c); # define CGAL_assertion(EX) (static_cast(0)) # define CGAL_assertion_msg(EX,MSG) (static_cast(0)) # define CGAL_assertion_code(CODE) -# define CGAL_static_assertion(EX) -# define CGAL_static_assertion_msg(EX,MSG) +# define CGAL_static_assertion(EX) (static_cast(0)) +# define CGAL_static_assertion_msg(EX,MSG) (static_cast(0)) #else # define CGAL_assertion(EX) \ (CGAL::possibly(EX)?(static_cast(0)): ::CGAL::assertion_fail( # EX , __FILE__, __LINE__))