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>2015-04-28 11:48:41 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-04-28 11:59:47 +0300
commit2edb342ffad63aa6ff37b852a0d40366254639ff (patch)
tree3627598107880a587aff6bed6c1923fbf0f04389 /source/blender/bmesh/bmesh_class.h
parent5c6ec169ccb257a0f1d7f0aafa83f3d5ff866ba1 (diff)
Fix for Clang type check
Diffstat (limited to 'source/blender/bmesh/bmesh_class.h')
-rw-r--r--source/blender/bmesh/bmesh_class.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/bmesh/bmesh_class.h b/source/blender/bmesh/bmesh_class.h
index 10048a16590..ada0fabd28e 100644
--- a/source/blender/bmesh/bmesh_class.h
+++ b/source/blender/bmesh/bmesh_class.h
@@ -263,7 +263,9 @@ enum {
#define _BM_GENERIC_TYPE_ELEM_CONST \
const void *, const BMVert *, const BMEdge *, const BMLoop *, const BMFace *, \
- const BMElem *, const BMElemF *, const BMHeader *
+ const BMElem *, const BMElemF *, const BMHeader *, \
+ void * const, BMVert * const, BMEdge * const, BMLoop * const, BMFace * const, \
+ BMElem * const, BMElemF * const, BMHeader * const
#define BM_CHECK_TYPE_ELEM_CONST(ele) \
CHECK_TYPE_ANY(ele, _BM_GENERIC_TYPES_CONST)