disable warning/errors in the testsuite

it seems there are information but not errors
This commit is contained in:
Sébastien Loriot 2024-03-01 14:42:57 +01:00
parent f130cfe92c
commit 4b5fabac12
1 changed files with 3 additions and 1 deletions

View File

@ -30,7 +30,9 @@
#include <CGAL/export/CORE.h>
#ifdef CGAL_TEST_SUITE
#define CGAL_CORE_warning_msg(X ,Y) CGAL_error_msg(Y)
// disabled for the testsuite to avoid `w`
#define CGAL_CORE_warning_msg(X ,Y)
// if (!(X)) CGAL_error_msg(Y)
#else
#define CGAL_CORE_warning_msg(X ,Y) CGAL_warning_msg(X ,Y)
#endif