diff options
author | Marek Kurdej <marek.kurdej+llvm.org@gmail.com> | 2022-01-07 10:02:45 +0100 |
---|---|---|
committer | Marek Kurdej <marek.kurdej+llvm.org@gmail.com> | 2022-01-07 10:06:49 +0100 |
commit | 91b9e6729c11cce8cf5fea727c6cb81ab8ab5ba4 (patch) | |
tree | ae556563aaccb14189b98cfd3d3d196e71fa6890 /llvm/lib/Bitcode/Reader/BitcodeReader.cpp | |
parent | 01f355fe95f6b45db8bb239239b7ed978e094a13 (diff) | |
download | llvm-91b9e6729c11cce8cf5fea727c6cb81ab8ab5ba4.zip llvm-91b9e6729c11cce8cf5fea727c6cb81ab8ab5ba4.tar.gz llvm-91b9e6729c11cce8cf5fea727c6cb81ab8ab5ba4.tar.bz2 |
[clang-format] Fix `BraceWrapping: AfterFunction` affecting synchronized blocks in Java.
Fixes https://github.com/llvm/llvm-project/issues/32031.
Before this change, BraceWrapping: AfterFunction would affect synchronized blocks in Java, but they should be formatted w.r.t. BraceWrapping: AfterControlStatement.
Using the config:
```
BreakBeforeBraces: Custom
BraceWrapping:
AfterControlStatement: false
AfterFunction: true
```
would result in misformatted code like:
```
class Foo {
void bar()
{
synchronized (this)
{
a();
a();
}
}
}
```
instead of:
```
class Foo {
void bar()
{
synchronized (this) {
a();
a();
}
}
}
```
Reviewed By: MyDeveloperDay, owenpan
Differential Revision: https://reviews.llvm.org/D116767
Diffstat (limited to 'llvm/lib/Bitcode/Reader/BitcodeReader.cpp')
0 files changed, 0 insertions, 0 deletions