CDDM: correct (disabled) logic in merge verts

This commit is contained in:
Campbell Barton 2018-04-25 14:53:44 +02:00
parent 53dc251fd3
commit 13b6867d1f
1 changed files with 1 additions and 1 deletions

View File

@ -3003,7 +3003,7 @@ DerivedMesh *CDDM_merge_verts(DerivedMesh *dm, const int *vtargetmap, const int
MLoop *ml, *mloop = MEM_malloc_arrayN(totloop, sizeof(*mloop), __func__);
int *oldl = MEM_malloc_arrayN(totloop, sizeof(*oldl), __func__);
#ifdef USE_LOOPS
int newl = MEM_malloc_arrayN(totloop, sizeof(*newl), __func__);
int *newl = MEM_malloc_arrayN(totloop, sizeof(*newl), __func__);
#endif
STACK_DECLARE(mloop);
STACK_DECLARE(oldl);