From 025de85f8b5fd3aec1e1fc91b5a0a219e82d370c Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 26 May 2016 09:39:22 +0200 Subject: [PATCH] Fix a warning g++, with `-Wall -Wextra`: .../include/CGAL/Mesh_3/polylines_to_protect.h:50:28: warning: unused parameter 'k' [-Wunused-parameter] --- Mesh_3/include/CGAL/Mesh_3/polylines_to_protect.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mesh_3/include/CGAL/Mesh_3/polylines_to_protect.h b/Mesh_3/include/CGAL/Mesh_3/polylines_to_protect.h index 31ca1241782..8ee0cb20e9c 100644 --- a/Mesh_3/include/CGAL/Mesh_3/polylines_to_protect.h +++ b/Mesh_3/include/CGAL/Mesh_3/polylines_to_protect.h @@ -47,7 +47,7 @@ void snap_graph_vertices(Graph& graph, const double vx, const double vy, const double vz, PolylineInputIterator existing_polylines_begin, PolylineInputIterator existing_polylines_end, - K k) + K) { const double dist_bound = (std::min)(vx, (std::min)(vy, vz)) / 256;