diff --git a/Curved_kernel_via_analysis_2/include/CGAL/Curved_kernel_via_analysis_2/Curved_kernel_via_analysis_2_functors.h b/Curved_kernel_via_analysis_2/include/CGAL/Curved_kernel_via_analysis_2/Curved_kernel_via_analysis_2_functors.h index bb786f61c5c..cb7605a1a2a 100755 --- a/Curved_kernel_via_analysis_2/include/CGAL/Curved_kernel_via_analysis_2/Curved_kernel_via_analysis_2_functors.h +++ b/Curved_kernel_via_analysis_2/include/CGAL/Curved_kernel_via_analysis_2/Curved_kernel_via_analysis_2_functors.h @@ -1688,8 +1688,9 @@ public: CGAL_CKvA_2_GRAB_BASE_FUNCTOR_TYPES; //! the result type - typedef std::iterator< output_iterator_tag, CGAL::Object > result_type; - + typedef std::iterator< std::output_iterator_tag, CGAL::Object > + result_type; + //! the arity of the functor typedef Arity_tag<3> Arity; @@ -2145,7 +2146,8 @@ public: CGAL_CKvA_2_GRAB_BASE_FUNCTOR_TYPES; //! the result type - typedef std::iterator result_type; + typedef std::iterator< std::output_iterator_tag, CGAL::Object > + result_type; //! the arity of the functor typedef Arity_tag<2> Arity; @@ -2242,7 +2244,7 @@ public: CGAL_CKvA_2_GRAB_BASE_FUNCTOR_TYPES; //! the result type - typedef std::iterator result_type; + typedef std::iterator< std::output_iterator_tag, Point_2 > result_type; //! the arity of the functor typedef Arity_tag<2> Arity; @@ -2316,7 +2318,7 @@ public: CGAL_CKvA_2_GRAB_BASE_FUNCTOR_TYPES; //! the result type - typedef std::iterator result_type; + typedef std::iterator< std::output_iterator_tag, Point_2 > result_type; //! the arity of the functor typedef Arity_tag<2> Arity;