fixed warning about converting int64 to int

This commit is contained in:
Dmitry Anisimov 2021-11-16 15:46:24 +01:00
parent a78c2798f3
commit 8015cb7d8a
1 changed files with 1 additions and 1 deletions

View File

@ -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;