summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Bottleneck_distance/include/gudhi/Internal_point.h16
-rw-r--r--src/Bottleneck_distance/include/gudhi/Planar_neighbors_finder.h2
2 files changed, 1 insertions, 17 deletions
diff --git a/src/Bottleneck_distance/include/gudhi/Internal_point.h b/src/Bottleneck_distance/include/gudhi/Internal_point.h
index f05d5fc9..90b5dd14 100644
--- a/src/Bottleneck_distance/include/gudhi/Internal_point.h
+++ b/src/Bottleneck_distance/include/gudhi/Internal_point.h
@@ -45,22 +45,6 @@ struct Internal_point {
return point_index==p.point_index;
}
bool operator!=(const Internal_point& p) const { return ! (*this == p); }
-/*
-Useless
- friend void swap(Internal_point& a, Internal_point& b)
- {
- using std::swap;
- double x_tmp = a.vec[0];
- double y_tmp = a.vec[1];
- int pi_tmp = a.point_index;
- a.vec[0] = b.vec[0];
- a.vec[1] = b.vec[1];
- a.point_index = b.point_index;
- b.vec[0] = x_tmp;
- b.vec[1] = y_tmp;
- b.point_index = pi_tmp;
- }
-*/
};
inline int null_point_index() {
diff --git a/src/Bottleneck_distance/include/gudhi/Planar_neighbors_finder.h b/src/Bottleneck_distance/include/gudhi/Planar_neighbors_finder.h
index 3a748169..8bd21267 100644
--- a/src/Bottleneck_distance/include/gudhi/Planar_neighbors_finder.h
+++ b/src/Bottleneck_distance/include/gudhi/Planar_neighbors_finder.h
@@ -35,7 +35,7 @@
#include <CGAL/Search_traits.h>
#include <gudhi/Persistence_diagrams_graph.h>
-#include <gudhi/Miscellaneous.h>
+#include <gudhi/Construct_coord_iterator.h>
namespace Gudhi {