Cleanup: add trailing commas to structs

Needed for clang formatting to workaround bug/limit, see: T53211
This commit is contained in:
2019-01-07 00:06:58 +11:00
parent f10a88ae8d
commit e305560f13
42 changed files with 131 additions and 118 deletions

View File

@@ -324,7 +324,7 @@ void BKE_mesh_calc_normals_poly(
MeshCalcNormalsData data = {
.mpolys = mpolys, .mloop = mloop, .mverts = mverts,
.pnors = pnors, .lnors_weighted = lnors_weighted, .vnors = vnors
.pnors = pnors, .lnors_weighted = lnors_weighted, .vnors = vnors,
};
/* Compute poly normals, and prepare weighted loop normals. */