From 4cacb970395f23fbecef9908af756ee63f6f0162 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Thu, 5 Jul 2012 14:56:50 +0000 Subject: [PATCH] remove warnings --- Point_set_processing_3/include/CGAL/Index_property_map.h | 2 +- Point_set_processing_3/include/CGAL/jet_estimate_normals.h | 2 +- Point_set_processing_3/include/CGAL/mst_orient_normals.h | 4 ++-- Point_set_processing_3/include/CGAL/pca_estimate_normals.h | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Point_set_processing_3/include/CGAL/Index_property_map.h b/Point_set_processing_3/include/CGAL/Index_property_map.h index a6a79835324..9dc31a2ed3b 100644 --- a/Point_set_processing_3/include/CGAL/Index_property_map.h +++ b/Point_set_processing_3/include/CGAL/Index_property_map.h @@ -132,7 +132,7 @@ public: Index_property_map( Iter first, ///< iterator over the first element (index 0) - Iter beyond) ///< past-the-end iterator over the elements + Iter /*beyond*/) ///< past-the-end iterator over the elements : m_first(first) { CGAL_TRACE(" Index_property_map: optimized version for a random access container\n"); diff --git a/Point_set_processing_3/include/CGAL/jet_estimate_normals.h b/Point_set_processing_3/include/CGAL/jet_estimate_normals.h index 5ffb8761289..d4a3d8f1c9d 100644 --- a/Point_set_processing_3/include/CGAL/jet_estimate_normals.h +++ b/Point_set_processing_3/include/CGAL/jet_estimate_normals.h @@ -135,7 +135,7 @@ jet_estimate_normals( PointPMap point_pmap, ///< property map InputIterator -> Point_3. NormalPMap normal_pmap, ///< property map InputIterator -> Vector_3. unsigned int k, ///< number of neighbors. - const Kernel& kernel, ///< geometric traits. + const Kernel& /*kernel*/, ///< geometric traits. unsigned int degree_fitting = 2) { CGAL_TRACE("Calls jet_estimate_normals()\n"); diff --git a/Point_set_processing_3/include/CGAL/mst_orient_normals.h b/Point_set_processing_3/include/CGAL/mst_orient_normals.h index ed63bbd5a1a..0f13d983b80 100644 --- a/Point_set_processing_3/include/CGAL/mst_orient_normals.h +++ b/Point_set_processing_3/include/CGAL/mst_orient_normals.h @@ -208,7 +208,7 @@ mst_find_source( ForwardIterator beyond, ///< past-the-end iterator over the input points. PointPMap point_pmap, ///< property map ForwardIterator -> Point_3 NormalPMap normal_pmap, ///< property map ForwardIterator -> Vector_3 - const Kernel& kernel) ///< geometric traits. + const Kernel& /*kernel*/) ///< geometric traits. { CGAL_TRACE(" mst_find_source()\n"); @@ -271,7 +271,7 @@ create_riemannian_graph( NormalPMap normal_pmap, ///< property map ForwardIterator -> Vector_3 IndexPMap index_pmap, ///< property map ForwardIterator -> index unsigned int k, ///< number of neighbors - const Kernel& kernel) ///< geometric traits. + const Kernel& /*kernel*/) ///< geometric traits. { // Input points types typedef typename boost::property_traits::value_type Point; diff --git a/Point_set_processing_3/include/CGAL/pca_estimate_normals.h b/Point_set_processing_3/include/CGAL/pca_estimate_normals.h index 7cbfaee66e6..31cee85f420 100644 --- a/Point_set_processing_3/include/CGAL/pca_estimate_normals.h +++ b/Point_set_processing_3/include/CGAL/pca_estimate_normals.h @@ -130,7 +130,7 @@ pca_estimate_normals( PointPMap point_pmap, ///< property map InputIterator -> Point_3. NormalPMap normal_pmap, ///< property map InputIterator -> Vector_3. unsigned int k, ///< number of neighbors. - const Kernel& kernel) ///< geometric traits. + const Kernel& /*kernel*/) ///< geometric traits. { CGAL_TRACE("Calls pca_estimate_normals()\n");