From 078e012cd9711e3d9b88bdf437f31e39518315df Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 1 Feb 2018 12:06:57 +1100 Subject: Cleanup: rename BLI_*_empty() -> clear() Consistent with other BLI API's --- source/blender/editors/uvedit/uvedit_parametrizer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/uvedit/uvedit_parametrizer.c') diff --git a/source/blender/editors/uvedit/uvedit_parametrizer.c b/source/blender/editors/uvedit/uvedit_parametrizer.c index 29c908ff900..2a3a2b84223 100644 --- a/source/blender/editors/uvedit/uvedit_parametrizer.c +++ b/source/blender/editors/uvedit/uvedit_parametrizer.c @@ -2185,7 +2185,7 @@ static void p_chart_simplify_compute(PChart *chart) e->u.nextcollapse = NULL; /* pop edge collapse out of heap one by one */ - while (!BLI_heap_empty(heap)) { + while (!BLI_heap_is_empty(heap)) { if (ncollapsed == NCOLLAPSE) break; -- cgit v1.2.3