From 0e743a8b09f22e5aaa7ee8886e54d8d7a4fdb31d Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 18 Aug 2010 09:20:35 +0000 Subject: [PATCH] incident_vertices -> adjacent_vertices --- .../include/CGAL/Poisson_reconstruction_function.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Surface_reconstruction_points_3/include/CGAL/Poisson_reconstruction_function.h b/Surface_reconstruction_points_3/include/CGAL/Poisson_reconstruction_function.h index 65855eefe58..99fd4a41aa7 100644 --- a/Surface_reconstruction_points_3/include/CGAL/Poisson_reconstruction_function.h +++ b/Surface_reconstruction_points_3/include/CGAL/Poisson_reconstruction_function.h @@ -505,7 +505,7 @@ private: // TODO: return NULL if none and assert std::vector vertices; vertices.reserve(32); - m_tr->incident_vertices(m_tr->infinite_vertex(),std::back_inserter(vertices)); + m_tr->adjacent_vertices(m_tr->infinite_vertex(),std::back_inserter(vertices)); typename std::vector::iterator it = vertices.begin(); return *it; }