mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-01-20 21:02:59 +08:00
std::isnan()
This commit is contained in:
parent
13eb302f3c
commit
7a4065eb9f
|
@ -118,7 +118,7 @@ void process_input(bool continuous_mode) {
|
||||||
printf("dec: %3u hex: %2x char: %c", c, c, c);
|
printf("dec: %3u hex: %2x char: %c", c, c, c);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isnan(delta_tstamp)) {
|
if (!std::isnan(delta_tstamp)) {
|
||||||
printf(" (%.2Lf ms)\n", delta_tstamp);
|
printf(" (%.2Lf ms)\n", delta_tstamp);
|
||||||
} else {
|
} else {
|
||||||
printf("\n");
|
printf("\n");
|
||||||
|
|
Loading…
Reference in New Issue
Block a user