mirror of https://github.com/CGAL/cgal
fixed warning about converting int64 to int
This commit is contained in:
parent
a78c2798f3
commit
8015cb7d8a
|
|
@ -371,7 +371,7 @@ namespace Boost_MP_internal {
|
|||
|
||||
const Interval_nt<false> intv(l, u);
|
||||
Protect_FPU_rounding<true> P(CGAL_FE_UPWARD);
|
||||
std::tie(l, u) = CGAL::ldexp(intv, e).pair();
|
||||
std::tie(l, u) = CGAL::ldexp(intv, static_cast<int>(e)).pair();
|
||||
|
||||
if (change_sign) {
|
||||
const double t = l;
|
||||
|
|
|
|||
Loading…
Reference in New Issue