mirror of https://github.com/CGAL/cgal
fixed unassigned var in the tests
This commit is contained in:
parent
00751c0869
commit
e2ddf5f17e
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue