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:
authorCampbell Barton <ideasman42@gmail.com>2013-11-18 16:54:07 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-11-18 16:54:07 +0400
commit0b01cc131650c25ec41ad2f2354c1d6c711c3664 (patch)
tree9ab5869ee5631aa26b5e9a0d25f99a59e6d964f5
parent53753c0ddc947aa74246492fb76466198a28db58 (diff)
Compile Fix: fix for gcc4.8 with bmesh header.
-rw-r--r--source/blender/bmesh/intern/bmesh_polygon.h2
1 files changed, 1 insertions, 1 deletions
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();