[Bf-blender-cvs] [4e91e72d531] temp_bmesh_multires: Let's try that again

Joseph Eagar noreply at git.blender.org
Mon Jul 12 03:23:02 CEST 2021


Commit: 4e91e72d53162636739415160923194deed66056
Author: Joseph Eagar
Date:   Sun Jul 11 21:21:10 2021 -0400
Branches: temp_bmesh_multires
https://developer.blender.org/rB4e91e72d53162636739415160923194deed66056

Let's try that again

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

M	source/blender/bmesh/intern/bmesh_inline.h

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

diff --git a/source/blender/bmesh/intern/bmesh_inline.h b/source/blender/bmesh/intern/bmesh_inline.h
index 3350ea90e28..5b4fb35946b 100644
--- a/source/blender/bmesh/intern/bmesh_inline.h
+++ b/source/blender/bmesh/intern/bmesh_inline.h
@@ -79,7 +79,7 @@ BLI_INLINE void _bm_elem_flag_merge(BMHeader *head_a, BMHeader *head_b)
 
 BLI_INLINE void _bm_elem_flag_merge_ex(BMHeader *head_a, BMHeader *head_b, const char hflag_and)
 {
-  if (((head_a->hflag & head_b->hflag) & hflag_and) == 0LL) {
+  if (((head_a->hflag & head_b->hflag) & hflag_and) == (char)0) {
     head_a->hflag &= ~hflag_and;
     head_b->hflag &= ~hflag_and;
   }



More information about the Bf-blender-cvs mailing list