summaryrefslogtreecommitdiff
path: root/src/common/example/example_CGAL_3D_points_off_reader.cpp
diff options
context:
space:
mode:
authorMathieuCarriere <mathieu.carriere3@gmail.com>2020-04-28 10:31:12 -0400
committerMathieuCarriere <mathieu.carriere3@gmail.com>2020-04-28 10:31:12 -0400
commit51ca2370ae27bec052bb4fffafc8a718ac306264 (patch)
tree67e1ea14d4c290295b0298dba0d701303a53f3b6 /src/common/example/example_CGAL_3D_points_off_reader.cpp
parent910f29401e053f668e4d277af098295ab05e6022 (diff)
parent0fb22e4c499b665ad505e5d9d2c325f7561f69c4 (diff)
fix conflict
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;
}