summaryrefslogtreecommitdiff
path: root/src/common/example/example_CGAL_points_off_reader.cpp
diff options
context:
space:
mode:
authorskachano <skachano@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-02-22 16:49:21 +0000
committerskachano <skachano@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-02-22 16:49:21 +0000
commit899838ae83f4a9cea085ba877e91a7ca035fbb4d (patch)
tree76c56df09e6ad006f94aa46b0d355492e4830f4b /src/common/example/example_CGAL_points_off_reader.cpp
parent81575612aaa0552307a6c744c327765ff89165e4 (diff)
parent707120336966af3dffb8b54cd0095fc1bcc3836d (diff)
Merged with trunk + minor changes
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/relaxed-witness@2094 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 6b23778cbe43e7697cd325039e843758a263d927
Diffstat (limited to 'src/common/example/example_CGAL_points_off_reader.cpp')
-rw-r--r--src/common/example/example_CGAL_points_off_reader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/example/example_CGAL_points_off_reader.cpp b/src/common/example/example_CGAL_points_off_reader.cpp
index 4522174a..8c6a6b54 100644
--- a/src/common/example/example_CGAL_points_off_reader.cpp
+++ b/src/common/example/example_CGAL_points_off_reader.cpp
@@ -34,7 +34,7 @@ int main(int argc, char **argv) {
// Retrieve the triangulation
std::vector<Point_d> point_cloud = off_reader.get_point_cloud();
- int n {0};
+ int n {};
for (auto point : point_cloud) {
std::cout << "Point[" << n << "] = ";
for (std::size_t i {0}; i < point.size(); i++)