cgal/Point_set_processing_3
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
..
doc_tex Change demo file 2011-03-08 08:02:46 +00:00
examples/Point_set_processing_3 Try to fix my last revision about cmake_policy, with CMake-2.6.x 2011-04-28 17:45:22 +00:00
include/CGAL Bug fix: input iterators are not required to be default-constructible 2011-05-06 10:24:08 +00:00
package_info/Point_set_processing_3 Remove Laurent Saboret from the maintainer files. 2009-10-21 07:56:06 +00:00
test/Point_set_processing_3 Try to fix my last revision about cmake_policy, with CMake-2.6.x 2011-04-28 17:45:22 +00:00
dont_submit Images used in the User Manual (rasterized) 2009-08-04 14:43:11 +00:00