From 0b01cc131650c25ec41ad2f2354c1d6c711c3664 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 18 Nov 2013 23:54:07 +1100 Subject: [PATCH] Compile Fix: fix for gcc4.8 with bmesh header. --- source/blender/bmesh/intern/bmesh_polygon.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/bmesh/intern/bmesh_polygon.h b/source/blender/bmesh/intern/bmesh_polygon.h index 5d98a9a40db..4b3b7f4b837 100644 --- a/source/blender/bmesh/intern/bmesh_polygon.h +++ b/source/blender/bmesh/intern/bmesh_polygon.h @@ -29,7 +29,7 @@ #include "BLI_compiler_attrs.h" -void BM_bmesh_calc_tessellation(BMesh *bm, BMLoop *(*looptris)[], int *r_looptris_tot); +void BM_bmesh_calc_tessellation(BMesh *bm, BMLoop *(*looptris)[3], int *r_looptris_tot); int BM_face_calc_tessellation(const BMFace *f, BMLoop **r_loops, int (*r_index)[3]) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(); void BM_face_calc_normal(const BMFace *f, float r_no[3]) ATTR_NONNULL();