"llvm/git@repo.hca.bsc.es:lalbano/llvm-bpevl.git" did not exist on "336734aca6a7da385d674d6122728ad1ef6e1e57"
clang-format: Keep empty lines and format 1-line nested blocks.
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
Loading
Please register or sign in to comment