diff --git a/Point_set_processing_3/include/CGAL/structure_point_set.h b/Point_set_processing_3/include/CGAL/structure_point_set.h index 30d9c25f9e0..74065ea94b4 100644 --- a/Point_set_processing_3/include/CGAL/structure_point_set.h +++ b/Point_set_processing_3/include/CGAL/structure_point_set.h @@ -41,14 +41,6 @@ #include #include -// The following lines only for MS Visual C++ -#ifdef _MSC_VER -#pragma warning(push) -#pragma warning(disable:4244) // boost converts signed to std::size_t -#endif - - - namespace CGAL { /*! @@ -714,8 +706,8 @@ private: typename Pointer_property_map::type pmap = make_property_map(m_points); - Tree tree (boost::counting_iterator (0), - boost::counting_iterator (m_points.size()), + Tree tree (boost::counting_iterator (0), + boost::counting_iterator (m_points.size()), typename Tree::Splitter(), Search_traits (pmap));