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:
authorLoren Osborn <linux_dr>2022-05-11 16:37:38 +0300
committerBrecht Van Lommel <brecht@blender.org>2022-05-11 19:03:26 +0300
commit502e1a44b9485184b199d5a22431d672d26735fe (patch)
treead9a6423b6bc5ea568a81359a3a3b1224625ec8c /source/blender/makesdna
parent3e782bba7180b7f59cb378898bb677fbf3976996 (diff)
Cleanup: fix compiler warnings on macOS
Differential Revision: https://developer.blender.org/D14917
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_mesh_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_mesh_types.h b/source/blender/makesdna/DNA_mesh_types.h
index b98c9dd2886..4a57f60be26 100644
--- a/source/blender/makesdna/DNA_mesh_types.h
+++ b/source/blender/makesdna/DNA_mesh_types.h
@@ -280,7 +280,7 @@ typedef struct Mesh {
/** Various flags used when editing the mesh. */
char editflag;
/** Mostly more flags used when editing or displaying the mesh. */
- short flag;
+ uint16_t flag;
/**
* The angle for auto smooth in radians. `M_PI` (180 degrees) causes all edges to be smooth.