From 3d8a8d04aa079029cd1d2472eddc98dd0a3fa805 Mon Sep 17 00:00:00 2001 From: Werner Almesberger Date: Sun, 13 Oct 2013 21:29:13 -0300 Subject: [PATCH] poly2d/f2d_tri_holes.cpp (tri_holes_append): rename to f2d_tri_holes_append --- poly2d/f2d_tri_holes.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/poly2d/f2d_tri_holes.cpp b/poly2d/f2d_tri_holes.cpp index b66dd31..37844ac 100644 --- a/poly2d/f2d_tri_holes.cpp +++ b/poly2d/f2d_tri_holes.cpp @@ -211,7 +211,7 @@ static struct f2d *make_face(CDT::Finite_faces_iterator fit, } -void tri_holes_append(const struct p2d *p, const struct p2d *holes, +void f2d_tri_holes_append(const struct p2d *p, const struct p2d *holes, struct f2d ***last) { CDT cdt; @@ -240,6 +240,6 @@ extern "C" struct f2d *f2d_tri_holes(const struct p2d *p, { struct f2d *res = NULL, **last = &res; - tri_holes_append(p, holes, &last); + f2d_tri_holes_append(p, holes, &last); return res; }