From a454f3ccf3085b8e8fd761ed5c4fde9df161ca65 Mon Sep 17 00:00:00 2001 From: Eric Berberich Date: Fri, 6 Jul 2012 07:19:16 +0000 Subject: [PATCH] removed some compiler warnings --- Polynomial/include/CGAL/Polynomial/determinant.h | 2 +- Polynomial/include/CGAL/Polynomial/subresultants.h | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Polynomial/include/CGAL/Polynomial/determinant.h b/Polynomial/include/CGAL/Polynomial/determinant.h index d357973cb4e..e81496048e5 100644 --- a/Polynomial/include/CGAL/Polynomial/determinant.h +++ b/Polynomial/include/CGAL/Polynomial/determinant.h @@ -134,7 +134,7 @@ namespace internal { template inline typename M::NT inexact_determinant_select (const M& matrix, int n, - other type) + other /* type */) { return det_berkowitz(matrix, n); } diff --git a/Polynomial/include/CGAL/Polynomial/subresultants.h b/Polynomial/include/CGAL/Polynomial/subresultants.h index 5589ee0e3af..3f65194b30e 100644 --- a/Polynomial/include/CGAL/Polynomial/subresultants.h +++ b/Polynomial/include/CGAL/Polynomial/subresultants.h @@ -777,11 +777,11 @@ namespace CGAL { typename OutputIterator2, typename OutputIterator3> OutputIterator1 polynomial_subresultants_with_cofactors_ - (typename Polynomial_traits_d::Polynomial_d P, - typename Polynomial_traits_d::Polynomial_d Q, + (typename Polynomial_traits_d::Polynomial_d /* P */, + typename Polynomial_traits_d::Polynomial_d /* Q */, OutputIterator1 sres_out, - OutputIterator2 coP_out, - OutputIterator3 coQ_out, + OutputIterator2 /* coP_out */, + OutputIterator3 /* coQ_out */, CGAL::Integral_domain_without_division_tag) { // polynomial_subresultants_with_cofactors requires // a model of IntegralDomain as coefficient type;