From 580d10e6b670e168959441eebea93fed406625f1 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Mon, 7 May 2018 14:33:20 +0200 Subject: Change mesh dirty runtime flags to signed int64_t. Because CD_MASK_XXX are signed longlong, so when assigning to unsigned longlong you get grumpy compiler errors! --- source/blender/makesdna/DNA_mesh_types.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/makesdna/DNA_mesh_types.h') diff --git a/source/blender/makesdna/DNA_mesh_types.h b/source/blender/makesdna/DNA_mesh_types.h index 9e611762b37..d951f67a7c4 100644 --- a/source/blender/makesdna/DNA_mesh_types.h +++ b/source/blender/makesdna/DNA_mesh_types.h @@ -70,10 +70,10 @@ typedef struct MeshRuntime { struct EditMeshData *edit_data; void *batch_cache; - uint64_t cd_dirty_vert; - uint64_t cd_dirty_edge; - uint64_t cd_dirty_loop; - uint64_t cd_dirty_poly; + int64_t cd_dirty_vert; + int64_t cd_dirty_edge; + int64_t cd_dirty_loop; + int64_t cd_dirty_poly; } MeshRuntime; typedef struct Mesh { -- cgit v1.2.3