summaryrefslogtreecommitdiff
path: root/thirdparty
diff options
context:
space:
mode:
authorJari Ronkainen <ronchaine@gmail.com>2018-07-03 19:34:09 +0300
committerJari Ronkainen <ronchaine@gmail.com>2018-07-29 22:27:47 +0300
commit687b95b41fb178382cecac7c7f5b1a078503431e (patch)
treeb863c233edb20fafb4293719b3893d499b1f2f0d /thirdparty
parente2b7a68db450d0d48d005719731619a49f96b7c8 (diff)
Do not use deprecated stuff that only glibc now implements
Diffstat (limited to 'thirdparty')
-rw-r--r--thirdparty/thekla_atlas/nvmath/nvmath.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/thirdparty/thekla_atlas/nvmath/nvmath.h b/thirdparty/thekla_atlas/nvmath/nvmath.h
index f2b69426e1..a697f9293d 100644
--- a/thirdparty/thekla_atlas/nvmath/nvmath.h
+++ b/thirdparty/thekla_atlas/nvmath/nvmath.h
@@ -181,10 +181,8 @@ namespace nv
{
#if NV_OS_WIN32 || NV_OS_XBOX || NV_OS_DURANGO
return _finite(f) != 0;
-#elif NV_OS_DARWIN || NV_OS_FREEBSD || NV_OS_OPENBSD || NV_OS_ORBIS
+#elif NV_OS_DARWIN || NV_OS_FREEBSD || NV_OS_OPENBSD || NV_OS_ORBIS || NV_OS_LINUX
return isfinite(f);
-#elif NV_OS_LINUX
- return finitef(f);
#else
# error "isFinite not supported"
#endif
@@ -196,10 +194,8 @@ namespace nv
{
#if NV_OS_WIN32 || NV_OS_XBOX || NV_OS_DURANGO
return _isnan(f) != 0;
-#elif NV_OS_DARWIN || NV_OS_FREEBSD || NV_OS_OPENBSD || NV_OS_ORBIS
+#elif NV_OS_DARWIN || NV_OS_FREEBSD || NV_OS_OPENBSD || NV_OS_ORBIS || NV_OS_LINUX
return isnan(f);
-#elif NV_OS_LINUX
- return isnanf(f);
#else
# error "isNan not supported"
#endif