mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 11:45:53 +01:00
Silence Qt6 MSVC warning
This commit is contained in:
parent
ae1e357fb7
commit
f4ee36a173
@ -14,7 +14,7 @@ static quint64 pointId(const QPoint &pos, quint32 type, quint32 labelPtr)
|
|||||||
{
|
{
|
||||||
quint64 id;
|
quint64 id;
|
||||||
|
|
||||||
uint hash = qHash(QPair<uint,uint>(qHash(QPair<int, int>(pos.x(),
|
uint hash = (uint)qHash(QPair<uint,uint>(qHash(QPair<int, int>(pos.x(),
|
||||||
pos.y())), labelPtr & 0x3FFFFF));
|
pos.y())), labelPtr & 0x3FFFFF));
|
||||||
id = ((quint64)type)<<32 | hash;
|
id = ((quint64)type)<<32 | hash;
|
||||||
// Make country labels precedent over city labels
|
// Make country labels precedent over city labels
|
||||||
|
Loading…
Reference in New Issue
Block a user