QElapsedTimer: Remove unused static nanosecondsToTicks method
Fixes clang-cl warning qelapsedtimer_win.cpp(80,22): warning: unused function 'nanosecondsToTicks' [-Wunused-function] Change-Id: I1ff334049fcf4b265fe97235b7daf06969331313 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
parent
e251f11849
commit
0adb78a847
@ -77,15 +77,6 @@ static inline qint64 ticksToNanoseconds(qint64 ticks)
|
||||
return ticks * 1000000;
|
||||
}
|
||||
|
||||
static inline qint64 nanosecondsToTicks(qint64 nsec)
|
||||
{
|
||||
if (counterFrequency > 0) {
|
||||
// QueryPerformanceCounter uses an arbitrary frequency
|
||||
return double(nsec) * counterFrequency / 1000000000.;
|
||||
}
|
||||
// GetTickCount(64) uses milliseconds
|
||||
return nsec / 1000000;
|
||||
}
|
||||
|
||||
static quint64 getTickCount()
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user