Cleanup: reorder report argument for pointer assignment

Most code uses ReportList argument last (or at least not first)
when an optional report list can be passed in.
This commit is contained in:
2019-05-20 18:06:09 +10:00
parent 88d2d82031
commit d00c54c855
49 changed files with 287 additions and 287 deletions

View File

@@ -84,7 +84,7 @@
} \
\
static void rna_Mesh_##collection_name##_##active_type##_set( \
struct ReportList *UNUSED(reports), PointerRNA *ptr, PointerRNA value) \
PointerRNA *ptr, PointerRNA value, struct ReportList *UNUSED(reports)) \
{ \
Mesh *me = rna_mesh(ptr); \
CustomData *data = rna_mesh_##customdata_type(ptr); \