summaryrefslogtreecommitdiffstats
path: root/util/generic/ymath.h
diff options
context:
space:
mode:
authorsomov <[email protected]>2022-02-10 16:45:47 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:45:47 +0300
commita5950576e397b1909261050b8c7da16db58f10b1 (patch)
tree7ba7677f6a4c3e19e2cefab34d16df2c8963b4d4 /util/generic/ymath.h
parent81eddc8c0b55990194e112b02d127b87d54164a9 (diff)
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util/generic/ymath.h')
-rw-r--r--util/generic/ymath.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/generic/ymath.h b/util/generic/ymath.h
index 9ff9ae2abe2..745d1c03a93 100644
--- a/util/generic/ymath.h
+++ b/util/generic/ymath.h
@@ -84,7 +84,7 @@ static inline bool IsNan(double f) {
#if defined(_win_)
return _isnan(f) != 0;
#else
- return std::isnan(f);
+ return std::isnan(f);
#endif
}