From 571e895cf82cd28f62a42de22bfc76e17ba1cb6b Mon Sep 17 00:00:00 2001 From: cjamin Date: Wed, 11 May 2016 15:41:29 +0000 Subject: Fix constructors name git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/subsampling_and_spatialsearching@1170 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 9f427883eab193b0f03f2bf63d0663a9c52f295e --- src/Spatial_searching/include/gudhi/Spatial_tree_data_structure.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Spatial_searching') diff --git a/src/Spatial_searching/include/gudhi/Spatial_tree_data_structure.h b/src/Spatial_searching/include/gudhi/Spatial_tree_data_structure.h index 48f9590b..b4dbbba1 100644 --- a/src/Spatial_searching/include/gudhi/Spatial_tree_data_structure.h +++ b/src/Spatial_searching/include/gudhi/Spatial_tree_data_structure.h @@ -64,7 +64,7 @@ public: typedef Incremental_neighbor_search INS_range; /// Constructor - Point_cloud_data_structure(Point_container_ const& points) + Spatial_tree_data_structure(Point_container_ const& points) : m_points(points), m_tree(boost::counting_iterator(0), boost::counting_iterator(points.size()), @@ -77,7 +77,7 @@ public: /// Constructor template - Point_cloud_data_structure( + Spatial_tree_data_structure( Point_container_ const& points, Point_indices_range const& only_these_points) : m_points(points), @@ -91,7 +91,7 @@ public: } /// Constructor - Point_cloud_data_structure( + Spatial_tree_data_structure( Point_container_ const& points, std::size_t begin_idx, std::size_t past_the_end_idx) : m_points(points), -- cgit v1.2.3