ebaker355 updated this revision to Diff 44506.
ebaker355 added a comment.
Remove unintended blank line change.
http://reviews.llvm.org/D16066
Files:
docs/ClangFormatStyleOptions.rst
include/clang/Format/Format.h
lib/Format/Format.cpp
lib/Format/UnwrappedLineParser.cpp
unittests/Format
ebaker355 created this revision.
ebaker355 added a subscriber: cfe-commits.
Herald added a subscriber: klimek.
Adds a new BraceWrapping option called BeforeWhileInDoWhile.
Code like this:
do {
// Some code
} while (1);
becomes:
do {
// Some code
}
while (1);