mirror of
https://github.com/openjdk/jdk.git
synced 2026-02-22 16:26:05 +00:00
8252250: isnanf is obsolete
Reviewed-by: dcubed, mikael
This commit is contained in:
parent
f0b30a5d24
commit
b957d802e6
@ -112,7 +112,7 @@ typedef uint64_t julong;
|
||||
#if defined(__APPLE__)
|
||||
inline int g_isnan(double f) { return isnan(f); }
|
||||
#elif defined(LINUX) || defined(_ALLBSD_SOURCE)
|
||||
inline int g_isnan(float f) { return isnanf(f); }
|
||||
inline int g_isnan(float f) { return isnan(f); }
|
||||
inline int g_isnan(double f) { return isnan(f); }
|
||||
#else
|
||||
#error "missing platform-specific definition here"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user