Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2018-02-01 04:06:57 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-02-01 05:40:53 +0300
commit078e012cd9711e3d9b88bdf437f31e39518315df (patch)
tree344ef2c78c3a70ae434095f8d25055ba3ba486ab /source/blender/bmesh/operators/bmo_edgenet.c
parent0a4e170c28cecd70e7cfb776f0c22a435ecd10e9 (diff)
Cleanup: rename BLI_*_empty() -> clear()
Consistent with other BLI API's
Diffstat (limited to 'source/blender/bmesh/operators/bmo_edgenet.c')
-rw-r--r--source/blender/bmesh/operators/bmo_edgenet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/operators/bmo_edgenet.c b/source/blender/bmesh/operators/bmo_edgenet.c
index 64b092da5c8..744ef866128 100644
--- a/source/blender/bmesh/operators/bmo_edgenet.c
+++ b/source/blender/bmesh/operators/bmo_edgenet.c
@@ -186,7 +186,7 @@ void bmo_edgenet_prepare_exec(BMesh *bm, BMOperator *op)
BLI_array_count_set(edges2, BLI_array_count(edges));
}
- BLI_array_empty(edges);
+ BLI_array_clear(edges);
count++;
}