diff --git a/Algebraic_kernel_d/include/CGAL/Algebraic_kernel_d/construct_binary.h b/Algebraic_kernel_d/include/CGAL/Algebraic_kernel_d/construct_binary.h index c59e24a235f..69c5d162543 100644 --- a/Algebraic_kernel_d/include/CGAL/Algebraic_kernel_d/construct_binary.h +++ b/Algebraic_kernel_d/include/CGAL/Algebraic_kernel_d/construct_binary.h @@ -40,7 +40,7 @@ inline void construct_binary( const Integer& e, Integer& x ) { x = Integer(1); const Integer max_ipower = (exponent > Integer(std::numeric_limits::max())) ? - INTERN_POLYNOMIAL::ipower( Integer(2), std::numeric_limits::max() ) : + POLYNOMIAL::ipower( Integer(2), std::numeric_limits::max() ) : Integer(0); while( exponent > Integer(std::numeric_limits::max()) ) { @@ -48,7 +48,7 @@ inline void construct_binary( const Integer& e, Integer& x ) { exponent -= Integer(std::numeric_limits::max()); } - x *= INTERN_POLYNOMIAL::ipower( Integer(2), (int)CGAL::to_double(exponent) ); + x *= POLYNOMIAL::ipower( Integer(2), (int)CGAL::to_double(exponent) ); } template< class Integer, class Rational >