From: Jean-Philippe Bruyère Date: Fri, 18 Feb 2022 22:00:02 +0000 (+0100) Subject: replace isnanf by isnan in vectors.h X-Git-Url: https://git.osiis.dedyn.io/?a=commitdiff_plain;h=a7e44969de86db102f840bac344598476ad2810c;p=jp%2Fvkvg.git replace isnanf by isnan in vectors.h --- 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) {