clang-format: Fix indentation of struct definitions with array init.
Before: struct { int x; int y; } points[] = { {1, 2}, {2, 3}, }; After: struct { int x; int y; } points[] = { {1, 2}, {2, 3}, }; llvm-svn: 220195
Loading
Please sign in to comment