Compile fix: forgotten parentheses around value
This commit is contained in:
parent
2294b16526
commit
f587cc9e7e
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ uint64_t _now() {
|
||||||
initial = false;
|
initial = false;
|
||||||
mach_timebase_info_data_t info;
|
mach_timebase_info_data_t info;
|
||||||
if (mach_timebase_info(&info) == 0) {
|
if (mach_timebase_info(&info) == 0) {
|
||||||
micro_scale *= static_cast<double>info.numer / static_cast<double>(info.denom);
|
micro_scale *= static_cast<double>(info.numer) / static_cast<double>(info.denom);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue