diff --git a/Voronoi_diagram_2/include/CGAL/Voronoi_diagram_2.h b/Voronoi_diagram_2/include/CGAL/Voronoi_diagram_2.h index 1af1e095e8a..807c7381b58 100644 --- a/Voronoi_diagram_2/include/CGAL/Voronoi_diagram_2.h +++ b/Voronoi_diagram_2/include/CGAL/Voronoi_diagram_2.h @@ -27,6 +27,7 @@ #include #include #include +#include #include #include @@ -625,14 +626,7 @@ public: //--------------- private: Locate_result locate(const Point_2& , const Tag_false&) const { - static unsigned int i = 0; - if ( i == 0 ) { - i++; - std::cerr << "Point location is not supported..." << std::endl; - } - - // to avoid warnings/errors... - // Face_handle f; + CGAL_assertion_msg(false, "Point location is not supported"); return Locate_result(); }