summaryrefslogtreecommitdiff
path: root/src/common/example/example_CGAL_points_off_reader.cpp
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-09-19 21:24:07 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-09-19 21:24:07 +0000
commitd04f3f02858044180471fc7e38948ff73e330162 (patch)
tree74d3dbf53df3267f32d9ce34a350615ca5e58847 /src/common/example/example_CGAL_points_off_reader.cpp
parent5cdf5825e0e5a937c5bbc5cee49ed9aa34f0af0e (diff)
parentca4f5e87e79701e48bb8697b19250be1b67c5f77 (diff)
Merge of warning_fix branch
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/trunk@1512 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 8fd75ab3cb6a02013df18f6d5048755d39524b70
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 264231b2..4522174a 100644
--- a/src/common/example/example_CGAL_points_off_reader.cpp
+++ b/src/common/example/example_CGAL_points_off_reader.cpp
@@ -37,7 +37,7 @@ int main(int argc, char **argv) {
int n {0};
for (auto point : point_cloud) {
std::cout << "Point[" << n << "] = ";
- for (int i {0}; i < point.size(); i++)
+ for (std::size_t i {0}; i < point.size(); i++)
std::cout << point[i] << " ";
std::cout << "\n";
++n;