[PATCH] D42729: clang-format: Fix formatting of function blocks followed by semicolon
Francois Ferrand via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Jan 31 02:54:27 PST 2018
Typz created this revision.
Typz added reviewers: krasimir, djasper, klimek.
In some case, the heuristic used to identify the type of blocks (in
UnwrappedLineParser) mistakens a Block for a BracedInit, when the
TokenAnnotator eventually finds (correclty) that this is a function
declaration.
This happens with empty function blocks followed by a semicolon.
This causes for exemple the following code to be mistakenly formatted:
void abort(){};
instead of:
void abort() {};
Repository:
rC Clang
https://reviews.llvm.org/D42729
Files:
lib/Format/TokenAnnotator.cpp
unittests/Format/FormatTest.cpp
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D42729.132129.patch
Type: text/x-patch
Size: 4696 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20180131/20e52520/attachment-0001.bin>
More information about the cfe-commits
mailing list