rm name look up conlicts

This commit is contained in:
Michael Hemmer 2008-03-26 09:15:37 +00:00
parent 45329f636c
commit e395bb743c
1 changed files with 2 additions and 2 deletions

View File

@ -1397,11 +1397,11 @@ void Polynomial<NT>::output_maple(std::ostream& os) const {
} }
int i = p.degree(); int i = p.degree();
print_maple_monomial(os, p[i], varname, i); CGAL::print_maple_monomial(os, p[i], varname, i);
while (--i >= 0) { while (--i >= 0) {
if (p[i] != NT(0)) { if (p[i] != NT(0)) {
os << " + "; os << " + ";
print_maple_monomial(os, p[i], varname, i); CGAL::print_maple_monomial(os, p[i], varname, i);
} }
} }
} }