Clean whitespace (no changes)

This commit is contained in:
Mael Rouxel-Labbé
2020-01-16 12:33:01 +01:00
parent 3bd0adf61f
commit 4536ea4f53
4 changed files with 68 additions and 74 deletions
@@ -542,25 +542,21 @@ namespace CartesianKernelFunctors {
typedef typename K::Line_2 Line_2;
typedef typename K::Equal_2 Equal_2;
public:
typedef Comparison_result result_type;
typedef Comparison_result result_type;
result_type
operator()(const Point_2& a, const Point_2& b,
const Point_2& c, const Point_2& d) const
{
CGAL_kernel_precondition_code(Equal_2 equal;)
CGAL_kernel_precondition(! equal(a,b));
CGAL_kernel_precondition(! equal(a,b));
return cmp_signed_dist_to_lineC2( a.x(), a.y(),
b.x(), b.y(),
c.x(), c.y(),
d.x(), d.y());
b.x(), b.y(),
c.x(), c.y(),
d.x(), d.y());
}
};
template <typename K>
class Compare_squared_radius_3
{