diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-08-13 09:04:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-13 09:04:43 +0200 |
commit | fed34c3fef480b84f4e1ec34d19b72534f99dfac (patch) | |
tree | 5324136db6e7243044f91facb424afe923890b2c | |
parent | 2062d6126d70f5c70b7b03ecb9372ec637c0ea3e (diff) | |
parent | 687b95b41fb178382cecac7c7f5b1a078503431e (diff) |
Merge pull request #20581 from ronchaine/nvmath-dont-use-obsolete-functions-on-linux
Do not use deprecated stuff that only glibc now implements
-rw-r--r-- | thirdparty/thekla_atlas/nvmath/nvmath.h | 8 |
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 |