aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/skcms/src/PortableMath.h
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/skcms/src/PortableMath.h')
-rw-r--r--third_party/skcms/src/PortableMath.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/skcms/src/PortableMath.h b/third_party/skcms/src/PortableMath.h
index efa59bf704..58a2fa8751 100644
--- a/third_party/skcms/src/PortableMath.h
+++ b/third_party/skcms/src/PortableMath.h
@@ -27,4 +27,4 @@ float log2f_(float);
float exp2f_(float);
float powf_(float, float);
-bool isfinitef_(float);
+static inline bool isfinitef_(float x) { return 0 == x*0; }