1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-28 13:41:16 +01:00

Cosmetics

This commit is contained in:
Martin Tůma 2019-09-18 09:18:09 +02:00
parent 0a75298b2b
commit 1a3356b8fe

View File

@ -92,7 +92,6 @@ bool SubFile::readVUInt32(Handle &hdl, quint32 &val) const
if (!readByte(hdl, b)) if (!readByte(hdl, b))
return false; return false;
val |= (((quint32)b) << (i * 8)) >> (8 - shift); val |= (((quint32)b) << (i * 8)) >> (8 - shift);
} }
return true; return true;