Skip to content

Commit

Permalink
Added missing reference in passed parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
efifogel committed Sep 9, 2024
1 parent 22e73c9 commit 49eebab
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1632,7 +1632,7 @@ class Arr_polycurve_basic_traits_2 {
*/
Comparison_result operator()(const X_monotone_curve_2& xcv1,
Arr_curve_end ce1/* for xcv1 */,
const X_monotone_curve_2 & xcv2,
const X_monotone_curve_2& xcv2,
Arr_curve_end ce2/*! for xcv2 */,
Arr_has_open_side_tag) const {
const auto* geom_traits = m_poly_traits.subcurve_traits_2();
Expand Down Expand Up @@ -1679,8 +1679,8 @@ class Arr_polycurve_basic_traits_2 {
const Arr_curve_end ce) const
{ return (ce == ARR_MIN_END) ? 0 : xcv.number_of_subcurves() - 1; }

Comparison_result operator()(const X_monotone_curve_2 xcv1,
const X_monotone_curve_2 xcv2,
Comparison_result operator()(const X_monotone_curve_2& xcv1,
const X_monotone_curve_2& xcv2,
Arr_curve_end ce) const {
const auto* geom_traits = m_poly_traits.subcurve_traits_2();
auto cmp_x_near_boundary = geom_traits->compare_x_near_boundary_2_object();
Expand Down

0 comments on commit 49eebab

Please sign in to comment.