C++ warning fixes

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk
2025-08-01 13:33:12 +02:00
committed by Konstantin Pastbin
parent a28d5d15ce
commit 2aaf37e9ee
15 changed files with 35 additions and 34 deletions

View File

@@ -33,12 +33,12 @@ double GetScaleLevelD(m2::RectD const & r)
int GetScaleLevel(double ratio)
{
return std::lround(GetScaleLevelD(ratio));
return static_cast<int>(std::lround(GetScaleLevelD(ratio)));
}
int GetScaleLevel(m2::RectD const & r)
{
return std::lround(GetScaleLevelD(r));
return static_cast<int>(std::lround(GetScaleLevelD(r)));
}
namespace