removed some compiler warnings

This commit is contained in:
Eric Berberich 2012-07-06 07:19:16 +00:00
parent 005904363f
commit a454f3ccf3
2 changed files with 5 additions and 5 deletions

View File

@ -134,7 +134,7 @@ namespace internal {
template <class M, class other> inline
typename M::NT inexact_determinant_select (const M& matrix,
int n,
other type)
other /* type */)
{
return det_berkowitz(matrix, n);
}

View File

@ -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;