From 32f42e14e382f6ff3e093e197fe33136c466a94b Mon Sep 17 00:00:00 2001 From: Eric Berberich Date: Tue, 20 May 2008 08:27:55 +0000 Subject: [PATCH] fixed compile bugs --- .../Curved_kernel_via_analysis_2_functors.h | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) 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;