Fix for Clang type check

This commit is contained in:
Campbell Barton 2015-04-28 18:48:41 +10:00
parent 5c6ec169cc
commit 2edb342ffa

@ -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)