From 931eb11d257b9aa65765ed07dc6906135a3fcdcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Fri, 5 May 2017 14:14:20 +0200 Subject: [PATCH] Fixed some point types --- .../CGAL/Kinetic/internal/Triangulation_helper_3.h | 6 +++--- .../CGAL/Kinetic/internal/triangulation_helpers_3.h | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Kinetic_data_structures/include/CGAL/Kinetic/internal/Triangulation_helper_3.h b/Kinetic_data_structures/include/CGAL/Kinetic/internal/Triangulation_helper_3.h index 658323ce79b..b3401e3a07f 100644 --- a/Kinetic_data_structures/include/CGAL/Kinetic/internal/Triangulation_helper_3.h +++ b/Kinetic_data_structures/include/CGAL/Kinetic/internal/Triangulation_helper_3.h @@ -241,7 +241,7 @@ public: template void write_edge(const Edge &e, Stream &out) const { - std::vector pts; + std::vector pts; pts.push_back(vertex(e,0)->point()); pts.push_back(vertex(e,1)->point()); std::sort(pts.begin(), pts.end()); @@ -265,7 +265,7 @@ public: template void write_labeled_facet(const Facet &f, Stream &out) const { - std::vector pts; + std::vector pts; pts.push_back(vertex(f,0)->point()); pts.push_back(vertex(f,1)->point()); pts.push_back(vertex(f,2)->point()); @@ -279,7 +279,7 @@ public: template void write_labeled_edge(const Edge &e, Stream &out) const { - std::vector pts; + std::vector pts; pts.push_back(vertex(e,0)->point()); pts.push_back(vertex(e,1)->point()); std::sort(pts.begin(), pts.end()); diff --git a/Kinetic_data_structures/include/CGAL/Kinetic/internal/triangulation_helpers_3.h b/Kinetic_data_structures/include/CGAL/Kinetic/internal/triangulation_helpers_3.h index 07b3064af8a..aae0974bb03 100644 --- a/Kinetic_data_structures/include/CGAL/Kinetic/internal/triangulation_helpers_3.h +++ b/Kinetic_data_structures/include/CGAL/Kinetic/internal/triangulation_helpers_3.h @@ -62,7 +62,7 @@ unsigned int i) template void write_facet(F f, std::ostream &out) { - std::vector pts; + std::vector pts; pts.push_back(vertex_of_facet(f,0)->point()); pts.push_back(vertex_of_facet(f,1)->point()); pts.push_back(vertex_of_facet(f,2)->point()); @@ -74,7 +74,7 @@ void write_facet(F f, std::ostream &out) template void write_edge(const E &e, std::ostream &out) { - std::vector pts; + std::vector pts; pts.push_back(vertex_of_edge(e,0)->point()); pts.push_back(vertex_of_edge(e,1)->point()); std::sort(pts.begin(), pts.end()); @@ -377,7 +377,7 @@ bool equal_edge(const Edge &e0, const Edge &e1) template void write_edge(const Edge &e, Stream &out) { - std::vector pts; + std::vector pts; pts.push_back(vertex(e,0)->point()); pts.push_back(vertex(e,1)->point()); std::sort(pts.begin(), pts.end()); @@ -391,7 +391,7 @@ void write_edge(const Edge &e, Stream &out) /* template void write_labeled_facet(const Facet &f, Stream &out) const { - std::vector pts; + std::vector pts; pts.push_back(vertex(f,0)->point()); pts.push_back(vertex(f,1)->point()); pts.push_back(vertex(f,2)->point()); @@ -404,7 +404,7 @@ void write_edge(const Edge &e, Stream &out) template void write_labeled_edge(const Edge &e, Stream &out) const { -std::vector pts; +std::vector pts; pts.push_back(vertex(e,0)->point()); pts.push_back(vertex(e,1)->point()); std::sort(pts.begin(), pts.end());