]> granicus.if.org Git - clang/commit
[clang-format] Fix regression about short functions after #else
authorKrasimir Georgiev <krasimir@google.com>
Mon, 2 Oct 2017 15:53:37 +0000 (15:53 +0000)
committerKrasimir Georgiev <krasimir@google.com>
Mon, 2 Oct 2017 15:53:37 +0000 (15:53 +0000)
commit4e0b56c202361f464daadc14e860a7842f7edbb2
treeb91f6986432a39bb21275363df8c230899b350be
parent316ebefb7fff8ad324a08a694347500b6cd7c95f
[clang-format] Fix regression about short functions after #else

Summary:
This patch fixes a regression introduced in r312904, where the formatter confuses
the `else` in `#else` with an `else` of an `if-else` statement.
For example, formatting this code with google style
```
#ifdef A
int f() {}
#else
int f() {}
#endif
```
resulted in
```
#ifdef A
int f() {}
#else
int f() {
}
#endif
```

Reviewers: sammccall

Reviewed By: sammccall

Subscribers: klimek, cfe-commits

Differential Revision: https://reviews.llvm.org/D37973

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@314683 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Format/UnwrappedLineFormatter.cpp
unittests/Format/FormatTest.cpp