diff --git a/Number_types/test/Number_types/rounding_modes.cpp b/Number_types/test/Number_types/rounding_modes.cpp index ce4cad93ba8..c9a054df778 100644 --- a/Number_types/test/Number_types/rounding_modes.cpp +++ b/Number_types/test/Number_types/rounding_modes.cpp @@ -21,11 +21,12 @@ void print_res (bool res) // +--------+------+-------+ // I use a global variable here to avoid constant propagation. -double IA_min_double = CGAL_IA_MIN_DOUBLE; +double IA_min_double; CGAL::FPU_CW_t FPU_empiric_test() { + IA_min_double = CGAL_IA_MIN_DOUBLE; double y = 1.0, z = -1.0; double ye, ze; ye = y - IA_min_double;