cgal/Point_set_processing_3/include/CGAL
Laurent Rineau 19a787e342 Bug fix: input iterators are not required to be default-constructible
When InputIterator is an input-iterator type, one cannot do:

   InputIterator it;
   for(it = first; it != beyond; it++)

because input iterators may not be default-constructible. Only forward
iterators are required, by the C++03 norm, to be default-constructible.


We need to write: 

   for(InputIterator it = first; it != beyond; it++)
2011-05-06 10:24:08 +00:00
..
IO *remove warnings. 2011-02-28 15:28:28 +00:00
Index_property_map.h
Point_with_normal_3.h
Search_traits_vertex_handle_3.h
compute_average_spacing.h Bug fix: input iterators are not required to be default-constructible 2011-05-06 10:24:08 +00:00
grid_simplify_point_set.h *remove warnings. 2011-02-28 15:28:28 +00:00
improved_jet_smooth_point_set.h
improved_laplacian_smooth_point_set.h
jet_estimate_normals.h
jet_smooth_point_set.h
mst_orient_normals.h
pca_estimate_normals.h
pca_smooth_point_set.h
point_set_processing_assertions.h
property_map.h
radial_orient_normals.h
random_simplify_point_set.h *remove warnings. 2011-02-28 15:28:28 +00:00
remove_outliers.h *remove warnings. 2011-02-28 15:28:28 +00:00
remove_outliers_wrt_median_knn_sq_distance.h
trace.h
value_type_traits.h