From 17356404e0a9f79b942e8e69bbd8023d0f8016f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Mon, 11 Dec 2023 12:14:30 +0100 Subject: [PATCH] Fix typo --- Mesh_3/benchmark/Mesh_3/benchmark_mesh_3.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Mesh_3/benchmark/Mesh_3/benchmark_mesh_3.cpp b/Mesh_3/benchmark/Mesh_3/benchmark_mesh_3.cpp index b96a6415331..59629dd5b0e 100644 --- a/Mesh_3/benchmark/Mesh_3/benchmark_mesh_3.cpp +++ b/Mesh_3/benchmark/Mesh_3/benchmark_mesh_3.cpp @@ -141,7 +141,7 @@ enum Exit_code VALID_OUTPUT = 0, // Failure - INTPUT_IS_INVALID = 1, + INPUT_IS_INVALID = 1, OUTPUT_IS_INVALID = 2 }; @@ -308,7 +308,7 @@ Exit_code make_mesh_polyhedron(const std::string& input_filename, if(!CGAL::IO::read_polygon_mesh(input_filename, polyhedron)) { std::cerr << "Error: Could not read '" << input_filename << "'" << std::endl; - return INTPUT_IS_INVALID; + return INPUT_IS_INVALID; } if(is_empty(polyhedron) || @@ -317,7 +317,7 @@ Exit_code make_mesh_polyhedron(const std::string& input_filename, PMP::does_self_intersect(polyhedron)) { std::cerr << "Error: input has defects" << std::endl; - return INTPUT_IS_INVALID; + return INPUT_IS_INVALID; } std::cout << "Building AABB tree... " << std::endl; @@ -628,7 +628,7 @@ int main(int argc, char** argv) >> num_iteration)) { std::cerr << "Error: failed to read input" << std::endl; - return INTPUT_IS_INVALID; + return INPUT_IS_INVALID; } res = run(input,