From fb3a0a34b4d2d2e777578d28626558670b717f3b Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Thu, 24 Mar 2022 12:54:07 -0500 Subject: Fix: Build error with flag usage and strict warnings --- source/blender/modifiers/intern/MOD_solidify_nonmanifold.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender') diff --git a/source/blender/modifiers/intern/MOD_solidify_nonmanifold.c b/source/blender/modifiers/intern/MOD_solidify_nonmanifold.c index 7c1cf326c60..d896cab4688 100644 --- a/source/blender/modifiers/intern/MOD_solidify_nonmanifold.c +++ b/source/blender/modifiers/intern/MOD_solidify_nonmanifold.c @@ -1990,7 +1990,7 @@ Mesh *MOD_solidify_nonmanifold_modifyMesh(ModifierData *md, /* delete all vertex creases in the result if a rim is used. */ if (do_rim) { CustomData_free_layers(&result->vdata, CD_CREASE, result->totvert); - result->cd_flag &= ~ME_CDFLAG_VERT_CREASE; + result->cd_flag &= (char)(~ME_CDFLAG_VERT_CREASE); } } -- cgit v1.2.3