Fix conversion warning

This commit is contained in:
Mael Rouxel-Labbé 2023-03-17 14:43:26 +01:00
parent a8d38e84af
commit 4f6846776a
1 changed files with 2 additions and 2 deletions

View File

@ -109,7 +109,7 @@ insert_generic_dummy_points()
auto grid_offset_to_lattice_offset = [&](const Offset& loff) -> Offset auto grid_offset_to_lattice_offset = [&](const Offset& loff) -> Offset
{ {
const int hloz = std::ceil(double(loff[max_pos]) / 2.); const std::size_t hloz = std::size_t(std::ceil(double(loff[max_pos]) / 2.));
Offset goff; Offset goff;
goff[min_pos] = loff[min_pos] + hloz; goff[min_pos] = loff[min_pos] + hloz;
@ -120,7 +120,7 @@ insert_generic_dummy_points()
auto lattice_offset_to_grid_offset = [&](const Offset& loff) -> Offset auto lattice_offset_to_grid_offset = [&](const Offset& loff) -> Offset
{ {
const int hloz = std::ceil(double(loff[max_pos]) / 2.); const std::size_t hloz = std::size_t(std::ceil(double(loff[max_pos]) / 2.));
Offset goff; Offset goff;
goff[min_pos] = loff[min_pos] - hloz; goff[min_pos] = loff[min_pos] - hloz;