forked from OSchip/llvm-project
9b246e09ce
Let clang-format consistently keep up to one empty line (configured via FormatStyle::MaxEmptyLinesToKeep) in nested blocks, e.g. lambdas. Also, actually format single statements in nested blocks. Before: DEBUG({ int i; }); DEBUG({ int i; // an empty line here would just be removed. int j; }); After: DEBUG({ int i; }); DEBUG({ int i; int j; }); llvm-svn: 190278 |
||
---|---|---|
.. | ||
AST | ||
ASTMatchers | ||
Basic | ||
Format | ||
Frontend | ||
Lex | ||
Sema | ||
Tooling | ||
CMakeLists.txt | ||
Makefile |