From cffae363813e92148a27604a69b7576ba6962962 Mon Sep 17 00:00:00 2001 From: Dalai Felinto Date: Thu, 20 Sep 2018 14:47:10 +0000 Subject: Fix build for MSVC: Remove trailing double semicolon Not sure why but MSVC is complaining for some of those. In particular for the struct in BKE_subdiv_ccg.h. Those were the ones crashing here.. --- source/blender/editors/mesh/editmesh_add_gizmo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/mesh') diff --git a/source/blender/editors/mesh/editmesh_add_gizmo.c b/source/blender/editors/mesh/editmesh_add_gizmo.c index 253f546c7af..7437d86e6b5 100644 --- a/source/blender/editors/mesh/editmesh_add_gizmo.c +++ b/source/blender/editors/mesh/editmesh_add_gizmo.c @@ -321,7 +321,7 @@ static void MESH_GGT_add_bounds(struct wmGizmoGroupType *gzgt) static int add_primitive_cube_gizmo_exec(bContext *C, wmOperator *op) { - Object *obedit = CTX_data_edit_object(C);; + Object *obedit = CTX_data_edit_object(C); BMEditMesh *em = BKE_editmesh_from_object(obedit); float matrix[4][4]; -- cgit v1.2.3