[Bf-blender-cvs] [4e797dbc698] temp_bmesh_multires: Definitely going to modify BLI_strict_types.h

Joseph Eagar noreply at git.blender.org
Mon Jul 12 18:30:39 CEST 2021


Commit: 4e797dbc698a7fc14e0cb9bdcbb6bf8f4a45820b
Author: Joseph Eagar
Date:   Mon Jul 12 12:30:23 2021 -0400
Branches: temp_bmesh_multires
https://developer.blender.org/rB4e797dbc698a7fc14e0cb9bdcbb6bf8f4a45820b

Definitely going to modify BLI_strict_types.h

===================================================================

M	source/blender/bmesh/intern/bmesh_log.c

===================================================================

diff --git a/source/blender/bmesh/intern/bmesh_log.c b/source/blender/bmesh/intern/bmesh_log.c
index 2237d5629f4..421336a5cbe 100644
--- a/source/blender/bmesh/intern/bmesh_log.c
+++ b/source/blender/bmesh/intern/bmesh_log.c
@@ -458,12 +458,9 @@ static void bm_log_verts_unmake_pre(
 static void bm_log_verts_unmake(
     BMesh *bm, BMLog *log, GHash *verts, BMLogEntry *entry, BMLogCallbacks *callbacks)
 {
-  const int cd_vert_mask_offset = CustomData_get_offset(&bm->vdata, CD_PAINT_MASK);
-
   GHashIterator gh_iter;
   GHASH_ITER (gh_iter, verts) {
     void *key = BLI_ghashIterator_getKey(&gh_iter);
-    BMLogVert *lv = BLI_ghashIterator_getValue(&gh_iter);
     uint id = POINTER_AS_UINT(key);
     BMVert *v = bm_log_vert_from_id(log, id);



More information about the Bf-blender-cvs mailing list