fixed warning about converting int64 to int

This commit is contained in:
Dmitry Anisimov
2022-05-03 10:56:41 +02:00
parent a78c2798f3
commit 8015cb7d8a
+1 -1
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;