From fa5f5aaf2acad55a481d55baff5ca7ba2d65ac8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Wed, 26 Nov 2025 00:13:17 +0100 Subject: [PATCH] Fix bad copy paste --- .../include/CGAL/Alpha_wrap_3/internal/Alpha_wrap_3.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Alpha_wrap_3.h b/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Alpha_wrap_3.h index 6eae3e75847..4f1b2b5edfb 100644 --- a/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Alpha_wrap_3.h +++ b/Alpha_wrap_3/include/CGAL/Alpha_wrap_3/internal/Alpha_wrap_3.h @@ -911,18 +911,18 @@ private: } Steiner_status compute_steiner_point(const Gate& gate, - Point_2& steiner_point) const + Point_3& steiner_point) const { - const Face_handle fh = gate.face(); + const Facet& f = gate.facet(); const Cell_handle ch = f.first; const int s = f.second; const Cell_handle nh = ch->neighbor(s); return compute_steiner_point(ch, nh, steiner_point); } - bool compute_steiner_point(const Cell_handle ch, - const Cell_handle neighbor, - Point_3& steiner_point) const + Steiner_status compute_steiner_point(const Cell_handle ch, + const Cell_handle neighbor, + Point_3& steiner_point) const { CGAL_precondition(!m_tr.is_infinite(neighbor));