Fix: Build error with flag usage and strict warnings

This commit is contained in:
Hans Goudey 2022-03-24 12:54:07 -05:00
parent a6214ce7ac
commit fb3a0a34b4
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}