From 72792406c9e545cc5818faafb777b7179aede499 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 30 Jun 2016 08:10:49 +1000 Subject: Correct fix for MSVC --- source/blender/editors/uvedit/uvedit_parametrizer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/uvedit/uvedit_parametrizer.c b/source/blender/editors/uvedit/uvedit_parametrizer.c index 4713ea73b58..b3190ef784f 100644 --- a/source/blender/editors/uvedit/uvedit_parametrizer.c +++ b/source/blender/editors/uvedit/uvedit_parametrizer.c @@ -745,7 +745,7 @@ static PVert *p_vert_add(PHandle *handle, PHashKey key, const float co[3], PEdge * Note that values within the calculation may _become_ non-finite, * so the rest of the code still needs to take this possability into account. */ for (int i = 0; i < 3; i++) { - if (UNLIKELY(!finite(v->co[i]))) { + if (UNLIKELY(!isfinite(v->co[i]))) { v->co[i] = 0.0f; } } -- cgit v1.2.3