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

@@ -75,7 +75,7 @@ typedef struct {
static MatrixState state = {
.model_view_stack = {{MATRIX_4X4_IDENTITY}, 0},
.projection_stack = {{MATRIX_4X4_IDENTITY}, 0},
.dirty = true
.dirty = true,
};
#undef MATRIX_4X4_IDENTITY