De-ice VC7

This commit is contained in:
Andreas Fabri 2007-04-11 13:32:10 +00:00
parent 1481136ed0
commit 5ad17aa046
1 changed files with 2 additions and 1 deletions

View File

@ -406,7 +406,8 @@ class Algebraic_structure_traits_base< Type_, Field_tag >
const Type& y) const { const Type& y) const {
typedef Algebraic_structure_traits<Type> AST; typedef Algebraic_structure_traits<Type> AST;
typedef typename AST::Is_exact Is_exact; typedef typename AST::Is_exact Is_exact;
CGAL_precondition_msg( !Is_exact::value || (x / y) * y == x, bool ie = Is_exact::value;
CGAL_precondition_msg( !ie || (x / y) * y == x,
"'x' must be divisible by 'y' in " "'x' must be divisible by 'y' in "
"Algebraic_structure_traits<...>::Integral_div()(x,y)" ); "Algebraic_structure_traits<...>::Integral_div()(x,y)" );
return x / y; return x / y;