Small bug fixed (return type of evaluate_arg_by_value).

This commit is contained in:
Sebastian Limbach 2008-04-04 09:31:51 +00:00
parent a627241618
commit 6687193ff6
1 changed files with 2 additions and 1 deletions

View File

@ -519,7 +519,8 @@ public:
// for the benefit of mem_fun1 & friends who don't like const ref args
template <class NTX>
NTX evaluate_arg_by_value(NTX x) const { return evaluate(x); }
typename CGAL::Coercion_traits<NT,NTX>::Type
evaluate_arg_by_value(NTX x) const { return evaluate(x); }
/*! \brief evaluate the polynomial with all coefficients replaced by
* their absolute values