From 22e73c9eaa0fd747bcc391e15432f16df5a71fc9 Mon Sep 17 00:00:00 2001 From: Efi Fogel Date: Mon, 9 Sep 2024 16:34:45 +0300 Subject: [PATCH] Fixed typos --- .../include/CGAL/Arr_counting_traits_2.h | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Arrangement_on_surface_2/include/CGAL/Arr_counting_traits_2.h b/Arrangement_on_surface_2/include/CGAL/Arr_counting_traits_2.h index 4707748fff6..0b9c916a3f2 100644 --- a/Arrangement_on_surface_2/include/CGAL/Arr_counting_traits_2.h +++ b/Arrangement_on_surface_2/include/CGAL/Arr_counting_traits_2.h @@ -563,7 +563,7 @@ public: */ class Is_on_x_identification_2 { private: - typename Base::Is_on_x_identificiation_2 m_object; + typename Base::Is_on_x_identification_2 m_object; size_t& m_counter1; size_t& m_counter2; @@ -571,17 +571,17 @@ public: /*! Construct */ Is_on_x_identification_2(const Base* base, size_t& counter1, size_t& counter2) : - m_object(base->is_on_x_identificiation_2_object()), + m_object(base->is_on_x_identification_2_object()), m_counter1(counter1), m_counter2(counter2) {} /*! Operate */ - Arr_parameter_space operator()(const Point_2& p) const + bool operator()(const Point_2& p) const { ++m_counter1; return m_object(p); } /*! Operate */ - Arr_parameter_space operator()(const X_monotone_curve_2& xc) const + bool operator()(const X_monotone_curve_2& xc) const { ++m_counter2; return m_object(xc); } }; @@ -666,7 +666,7 @@ public: */ class Is_on_y_identification_2 { private: - typename Base::Is_on_y_identificiation_2 m_object; + typename Base::Is_on_y_identification_2 m_object; size_t& m_counter1; size_t& m_counter2; @@ -674,18 +674,18 @@ public: /*! Construct */ Is_on_y_identification_2(const Base* base, size_t& counter1, size_t& counter2) : - m_object(base->is_on_y_identificiation_2_object()), + m_object(base->is_on_y_identification_2_object()), m_counter1(counter1), m_counter2(counter2) {} /*! Operate */ - Arr_parameter_space operator()(const Point_2& p) const + bool operator()(const Point_2& p) const { ++m_counter1; return m_object(p); } /*! Operate */ - Arr_parameter_space operator()(const X_monotone_curve_2& xc) const + bool operator()(const X_monotone_curve_2& xc) const { ++m_counter2; return m_object(xc); } }; @@ -943,7 +943,7 @@ Out_stream& operator<<(Out_stream& os, << traits.count_parameter_space_in_x_point() << std::endl << "# of PARAMETER_SPACE_IN_X curve operation = " << traits.count_parameter_space_in_x_curve() << std::endl - << "# of IS_ON_X_IDENTIFICIATION point operation = " + << "# of IS_ON_X_IDENTIFICATION point operation = " << traits.count_is_on_x_identification_point() << std::endl << "# of IS_ON_X_IDENTIFICATION curve operation = " << traits.count_is_on_x_identification_curve() << std::endl @@ -958,7 +958,7 @@ Out_stream& operator<<(Out_stream& os, << traits.count_parameter_space_in_y_point() << std::endl << "# of PARAMETER_SPACE_IN_Y curve operation = " << traits.count_parameter_space_in_y_curve() << std::endl - << "# of IS_ON_Y_IDENTIFICIATION point operation = " + << "# of IS_ON_Y_IDENTIFICATION point operation = " << traits.count_is_on_y_identification_point() << std::endl << "# of IS_ON_Y_IDENTIFICATION curve operation = " << traits.count_is_on_y_identification_curve() << std::endl