Keep CGAL_IA_FORCE_TO_DOUBLE for the normal case

This commit is contained in:
Brian Spilsbury 2021-03-04 00:26:36 +09:00
parent 62d1f6b0f0
commit 71bfcce226
1 changed files with 1 additions and 1 deletions

View File

@ -359,7 +359,7 @@ inline double CGAL_IA_UP(double d)
{
// In round-upward mode we can rely on the hardware
// to do the job.
return d;
return CGAL_IA_FORCE_TO_DOUBLE(d);
}
#endif
#define CGAL_IA_ADD(a,b) CGAL_IA_UP((a)+CGAL_IA_STOP_CPROP(b))