code cleanup: some structs were declaring data when only typedef's were intended, make local vars and functions static.

This commit is contained in:
2013-08-07 03:44:05 +00:00
parent f97a4bd254
commit 4f29aeeff2
10 changed files with 16 additions and 14 deletions

View File

@@ -5948,7 +5948,7 @@ PyTypeObject pyrna_func_Type = {
static void pyrna_prop_collection_iter_dealloc(BPy_PropertyCollectionIterRNA *self);
static PyObject *pyrna_prop_collection_iter_next(BPy_PropertyCollectionIterRNA *self);
PyTypeObject pyrna_prop_collection_iter_Type = {
static PyTypeObject pyrna_prop_collection_iter_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"bpy_prop_collection_iter", /* tp_name */
sizeof(BPy_PropertyCollectionIterRNA), /* tp_basicsize */