Cleanup: add semicolon after PyObject_VAR_HEAD

clang-format doesn't expand macros,
add semicolon to prevent misleading formatting.
This commit is contained in:
2019-05-03 12:26:29 +10:00
parent b8226a3ae1
commit a01bcfa636
14 changed files with 63 additions and 37 deletions

View File

@@ -53,7 +53,8 @@ enum {
#define BASE_MATH_MEMBERS(_data) \
/** Array of data (alias), wrapped status depends on wrapped status. */ \
PyObject_VAR_HEAD float *_data; \
PyObject_VAR_HEAD; \
float *_data; \
/** If this vector references another object, otherwise NULL, *Note* this owns its reference */ \
PyObject *cb_user; \
/** Which user funcs do we adhere to, RNA, etc */ \