summaryrefslogtreecommitdiff
path: root/src/common/example/example_CGAL_3D_points_off_reader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/example/example_CGAL_3D_points_off_reader.cpp')
-rw-r--r--src/common/example/example_CGAL_3D_points_off_reader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/example/example_CGAL_3D_points_off_reader.cpp b/src/common/example/example_CGAL_3D_points_off_reader.cpp
index d48bb17d..665b7a29 100644
--- a/src/common/example/example_CGAL_3D_points_off_reader.cpp
+++ b/src/common/example/example_CGAL_3D_points_off_reader.cpp
@@ -32,7 +32,7 @@ int main(int argc, char **argv) {
// Retrieve the triangulation
std::vector<Point_3> point_cloud = off_reader.get_point_cloud();
- int n {0};
+ int n {};
for (auto point : point_cloud) {
++n;
std::cout << "Point[" << n << "] = (" << point[0] << ", " << point[1] << ", " << point[2] << ")\n";