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:
authorHans Goudey <h.goudey@me.com>2022-03-24 20:54:07 +0300
committerHans Goudey <h.goudey@me.com>2022-03-24 20:54:30 +0300
commitfb3a0a34b4d2d2e777578d28626558670b717f3b (patch)
tree199a9b48b7826167cca6ec55fc9a8786e52e6518 /source/blender/modifiers/intern/MOD_solidify_nonmanifold.c
parenta6214ce7acb64f72774405502ec65ae779926694 (diff)
Fix: Build error with flag usage and strict warnings
Diffstat (limited to 'source/blender/modifiers/intern/MOD_solidify_nonmanifold.c')
-rw-r--r--source/blender/modifiers/intern/MOD_solidify_nonmanifold.c2
1 files changed, 1 insertions, 1 deletions
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);
}
}