From a7e44969de86db102f840bac344598476ad2810c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jean-Philippe=20Bruy=C3=A8re?= Date: Fri, 18 Feb 2022 23:00:02 +0100 Subject: [PATCH] replace isnanf by isnan in vectors.h --- src/vectors.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vectors.h b/src/vectors.h index 25550e4..a8a815f 100644 --- a/src/vectors.h +++ b/src/vectors.h @@ -177,7 +177,7 @@ vkvg_inline void vec2_inv (vec2* v){ } // test if one component of float vector is nan vkvg_inline bool vec2_isnan (vec2 v){ - return (bool)(isnanf (v.x) || isnanf (v.y)); + return (bool)(isnan (v.x) || isnan (v.y)); } // test if one component of double vector is nan vkvg_inline float vec2_dot (vec2 a, vec2 b) { -- 2.47.3