fixed unassigned var in the tests

This commit is contained in:
Dmitry Anisimov 2021-04-08 12:39:18 +02:00
parent 00751c0869
commit e2ddf5f17e
1 changed files with 1 additions and 1 deletions

View File

@ -1687,7 +1687,7 @@ bool IO_base_test<Base_geom_traits>::read_xcurve(InputStream_& is,
read_point(is, p2); read_point(is, p2);
CGAL_assertion(p1 != p2); CGAL_assertion(p1 != p2);
unsigned int flag; unsigned int flag = static_cast<unsigned int>(-1);
is >> flag; is >> flag;
if (flag == 1) { if (flag == 1) {
X_monotone_curve_2::Direction_3 normal; X_monotone_curve_2::Direction_3 normal;