3
0
Fork 0
mirror of https://github.com/JulianGro/overte.git synced 2025-04-30 22:03:31 +02:00

fix narrowing warning by casting -1

This commit is contained in:
Zach Pomerantz 2016-06-20 14:46:20 -07:00
parent 25b21dacda
commit cfe9ac32d4

View file

@ -60,7 +60,7 @@ protected:
void sendDescriptors();
QVariantMap _metadata;
uint32_t _lastTic{ -1 };
uint32_t _lastTic{ (uint32_t)-1 };
uint32_t _tic{ 0 };
};