mirror of
https://github.com/google/benchmark.git
synced 2025-04-03 16:10:58 +08:00
Fix C-style typecasting in QNX-specific code (#1739)
C-style typecasting breaks the build due to `-Werror=old-style-cast` which should remain in place.
This commit is contained in:
parent
ea71a14891
commit
3d293cd67a
@ -777,8 +777,9 @@ double GetCPUCyclesPerSecond(CPUInfo::Scaling scaling) {
|
|||||||
kstat_close(kc);
|
kstat_close(kc);
|
||||||
return clock_hz;
|
return clock_hz;
|
||||||
#elif defined(BENCHMARK_OS_QNX)
|
#elif defined(BENCHMARK_OS_QNX)
|
||||||
return static_cast<double>((int64_t)(SYSPAGE_ENTRY(cpuinfo)->speed) *
|
return static_cast<double>(
|
||||||
(int64_t)(1000 * 1000));
|
static_cast<int64_t>(SYSPAGE_ENTRY(cpuinfo)->speed) *
|
||||||
|
static_cast<int64_t>(1000 * 1000));
|
||||||
#elif defined(BENCHMARK_OS_QURT)
|
#elif defined(BENCHMARK_OS_QURT)
|
||||||
// QuRT doesn't provide any API to query Hexagon frequency.
|
// QuRT doesn't provide any API to query Hexagon frequency.
|
||||||
return 1000000000;
|
return 1000000000;
|
||||||
|
Loading…
Reference in New Issue
Block a user