Fix a "potentially uninitialized" warning

This commit is contained in:
Mael Rouxel-Labbé 2019-10-16 09:28:43 +02:00
parent 1637608b9a
commit 09e563c73f
1 changed files with 1 additions and 1 deletions

View File

@ -1206,7 +1206,7 @@ private:
// the relative position of the ray between node.source() and node.target_vertex() and the ray
// from occupier.source() (-1 left, 0 collinear, 1 right)
CGAL::Comparison_result c;
CGAL::Comparison_result c = CGAL::EQUAL; // initializing to please weak compilers
if (currentOccupier.first != NULL)
{