mirror of https://github.com/CGAL/cgal
removed some compiler warnings
This commit is contained in:
parent
005904363f
commit
a454f3ccf3
|
|
@ -134,7 +134,7 @@ namespace internal {
|
||||||
template <class M, class other> inline
|
template <class M, class other> inline
|
||||||
typename M::NT inexact_determinant_select (const M& matrix,
|
typename M::NT inexact_determinant_select (const M& matrix,
|
||||||
int n,
|
int n,
|
||||||
other type)
|
other /* type */)
|
||||||
{
|
{
|
||||||
return det_berkowitz(matrix, n);
|
return det_berkowitz(matrix, n);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -777,11 +777,11 @@ namespace CGAL {
|
||||||
typename OutputIterator2,
|
typename OutputIterator2,
|
||||||
typename OutputIterator3>
|
typename OutputIterator3>
|
||||||
OutputIterator1 polynomial_subresultants_with_cofactors_
|
OutputIterator1 polynomial_subresultants_with_cofactors_
|
||||||
(typename Polynomial_traits_d::Polynomial_d P,
|
(typename Polynomial_traits_d::Polynomial_d /* P */,
|
||||||
typename Polynomial_traits_d::Polynomial_d Q,
|
typename Polynomial_traits_d::Polynomial_d /* Q */,
|
||||||
OutputIterator1 sres_out,
|
OutputIterator1 sres_out,
|
||||||
OutputIterator2 coP_out,
|
OutputIterator2 /* coP_out */,
|
||||||
OutputIterator3 coQ_out,
|
OutputIterator3 /* coQ_out */,
|
||||||
CGAL::Integral_domain_without_division_tag) {
|
CGAL::Integral_domain_without_division_tag) {
|
||||||
// polynomial_subresultants_with_cofactors requires
|
// polynomial_subresultants_with_cofactors requires
|
||||||
// a model of IntegralDomain as coefficient type;
|
// a model of IntegralDomain as coefficient type;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue