Fix warning on VS2017

This commit is contained in:
Magne Sjaastad 2019-01-17 10:23:22 +01:00
parent ccff90b1d5
commit 5d9ef00067

View File

@ -502,9 +502,9 @@ qint64 RicHoloLensRestClient::getCurrentTimeStamp_ms()
{
return static_cast<qint64>(ts.tv_sec*1000 + ts.tv_nsec/1000000);
}
#endif
#else
return 0;
#endif
}