mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-04 07:19:08 +08:00
16 lines
679 B
Diff
16 lines
679 B
Diff
|
diff --git a/src/sysinfo.cc b/src/sysinfo.cc
|
||
|
index 922e83a..ec9fd35 100644
|
||
|
--- a/src/sysinfo.cc
|
||
|
+++ b/src/sysinfo.cc
|
||
|
@@ -771,8 +771,8 @@ double GetCPUCyclesPerSecond(CPUInfo::Scaling scaling) {
|
||
|
kstat_close(kc);
|
||
|
return clock_hz;
|
||
|
#elif defined(BENCHMARK_OS_QNX)
|
||
|
- return static_cast<double>((int64_t)(SYSPAGE_ENTRY(cpuinfo)->speed) *
|
||
|
- (int64_t)(1000 * 1000));
|
||
|
+ return static_cast<double>(static_cast<int64_t>(SYSPAGE_ENTRY(cpuinfo)->speed) *
|
||
|
+ static_cast<int64_t>(1000 * 1000));
|
||
|
#elif defined(BENCHMARK_OS_QURT)
|
||
|
// QuRT doesn't provide any API to query Hexagon frequency.
|
||
|
return 1000000000;
|