summaryrefslogtreecommitdiff
path: root/example/common/example_CGAL_3D_points_off_reader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'example/common/example_CGAL_3D_points_off_reader.cpp')
-rw-r--r--example/common/example_CGAL_3D_points_off_reader.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/example/common/example_CGAL_3D_points_off_reader.cpp b/example/common/example_CGAL_3D_points_off_reader.cpp
index 665b7a29..4658d8d5 100644
--- a/example/common/example_CGAL_3D_points_off_reader.cpp
+++ b/example/common/example_CGAL_3D_points_off_reader.cpp
@@ -20,12 +20,12 @@ int main(int argc, char **argv) {
usage(argv[0]);
}
- std::string offInputFile(argv[1]);
+ std::string off_input_file(argv[1]);
// Read the OFF file (input file name given as parameter) and triangulate points
- Gudhi::Points_3D_off_reader<Point_3> off_reader(offInputFile);
+ Gudhi::Points_3D_off_reader<Point_3> off_reader(off_input_file);
// Check the read operation was correct
if (!off_reader.is_valid()) {
- std::cerr << "Unable to read file " << offInputFile << std::endl;
+ std::cerr << "Unable to read file " << off_input_file << std::endl;
usage(argv[0]);
}