forked from organicmaps/organicmaps
Fix warning.
This commit is contained in:
parent
635df63e91
commit
6879758602
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ namespace m2
|
|||
{
|
||||
inline size_t hash_value(m2::PointD const & pt)
|
||||
{
|
||||
return PointToInt64(pt.x, pt.y);
|
||||
return static_cast<size_t>(PointToInt64(pt.x, pt.y));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue