mirror of https://github.com/CGAL/cgal
more replacements
This commit is contained in:
parent
33812aa8a0
commit
b27baeb945
|
|
@ -229,7 +229,7 @@ public:
|
|||
approx_ = Approx_squared_radius()( to_approx(*data().p0),to_approx(*data().p1),to_approx(*data().p2) );
|
||||
break;
|
||||
default:
|
||||
CGAL_unreachable());
|
||||
CGAL_unreachable();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -99,10 +99,7 @@ public:
|
|||
): cone_number(k), cones_choice(cones_selected), rays(std::vector<Direction_2>(k))
|
||||
|
||||
{
|
||||
if (k<2) {
|
||||
std::cout << "The number of cones must be larger than 1!" << std::endl;
|
||||
CGAL_assertion(false);
|
||||
}
|
||||
CGAL_assertion_msg(k>1, "The number of cones must be larger than 1");
|
||||
|
||||
/* Initialize a functor, specialization will happen here depending on the kernel type to
|
||||
compute the cone boundaries either exactly or inexactly */
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@ private:
|
|||
return true;
|
||||
}
|
||||
|
||||
CGAL_assertion(false);
|
||||
CGAL_unreachable();
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1940,7 +1940,7 @@ private:
|
|||
else if(is_on_mesh(h)) nb_mesh++;
|
||||
else if(is_on_border(h)) nb_border++;
|
||||
else if(is_an_isolated_constraint(h)) nb_isolated++;
|
||||
else CGAL_assertion(false);
|
||||
else CGAL_unreachable();
|
||||
}
|
||||
CGAL_USE(nb_border);
|
||||
CGAL_USE(nb_mesh);
|
||||
|
|
|
|||
Loading…
Reference in New Issue