diff --git a/Packages/Alpha_shapes_2/include/CGAL/Alpha_shape_euclidean_traits_2.h b/Packages/Alpha_shapes_2/include/CGAL/Alpha_shape_euclidean_traits_2.h index e973b8471d8..b752643fa47 100644 --- a/Packages/Alpha_shapes_2/include/CGAL/Alpha_shape_euclidean_traits_2.h +++ b/Packages/Alpha_shapes_2/include/CGAL/Alpha_shape_euclidean_traits_2.h @@ -26,17 +26,6 @@ #define CGAL_ALPHA_SHAPE_EUCLIDEAN_TRAITS_H #include -//#include -//#include -//#include -//#include -//#include - -#include // to avoid a g++ problem -#include -#include -#include -#include #include @@ -54,12 +43,12 @@ class Compute_squared_radius_2 public: typedef return_type result_type; - result_type operator()(const T& p, const T& q, const T& r) + result_type operator()(const T& p, const T& q, const T& r) const { return CGAL::squared_radius(p, q, r); } - result_type operator()(const T& p, const T& q) + result_type operator()(const T& p, const T& q) const { return CGAL::squared_radius_smallest_circumcircle(p, q); }