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 4658d8d5..7f4343f0 100644
--- a/src/common/example/example_CGAL_3D_points_off_reader.cpp
+++ b/src/common/example/example_CGAL_3D_points_off_reader.cpp
@@ -35,7 +35,7 @@ int main(int argc, char **argv) {
int n {};
for (auto point : point_cloud) {
++n;
- std::cout << "Point[" << n << "] = (" << point[0] << ", " << point[1] << ", " << point[2] << ")\n";
+ std::clog << "Point[" << n << "] = (" << point[0] << ", " << point[1] << ", " << point[2] << ")\n";
}
return 0;
}