mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-29 06:01:16 -03:00
Add comment about rounding in timer and appease clang-format
This commit is contained in:
@@ -101,7 +101,7 @@ wcstring timer_snapshot_t::print_delta(timer_snapshot_t t1, timer_snapshot_t t2,
|
||||
auto get_unit = [](int64_t micros) {
|
||||
if (micros > 900 * 1E6) {
|
||||
return tunit::minutes;
|
||||
} else if (micros >= 999995) {
|
||||
} else if (micros >= 999995) { // Move to seconds if we would overflow the %6.2 format.
|
||||
return tunit::seconds;
|
||||
} else if (micros >= 1000) {
|
||||
return tunit::milliseconds;
|
||||
|
||||
Reference in New Issue
Block a user