mirror of https://github.com/CGAL/cgal
De-ice VC7
This commit is contained in:
parent
1481136ed0
commit
5ad17aa046
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue