mirror of https://github.com/CGAL/cgal
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++) |
||
|---|---|---|
| .. | ||
| IO | ||
| Index_property_map.h | ||
| Point_with_normal_3.h | ||
| Search_traits_vertex_handle_3.h | ||
| compute_average_spacing.h | ||
| grid_simplify_point_set.h | ||
| 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_outliers.h | ||
| remove_outliers_wrt_median_knn_sq_distance.h | ||
| trace.h | ||
| value_type_traits.h | ||