diff options
author | Ilya Biryukov <ibiryukov@google.com> | 2018-09-17 07:46:20 +0000 |
---|---|---|
committer | Ilya Biryukov <ibiryukov@google.com> | 2018-09-17 07:46:20 +0000 |
commit | 370eff85b9ea544d9bb15149150676376eb66509 (patch) | |
tree | 6e74722fa2570682f73002fb598b6027f0010841 /clang/test/Analysis/model-file.cpp | |
parent | a57afd091f294cb4f8ba367d4f3b056d2bc51f3a (diff) | |
download | bcm5719-llvm-370eff85b9ea544d9bb15149150676376eb66509.tar.gz bcm5719-llvm-370eff85b9ea544d9bb15149150676376eb66509.zip |
[clang-Format] Fix indentation of member call after block
Summary:
before patch:
> echo "test() {([]() -> {int b = 32;return 3;}).as("");});" | clang-format -style=Google
```
test() {
([]() -> {
int b = 32;
return 3;
})
.as();
});
```
after patch:
> echo "test() {([]() -> {int b = 32;return 3;}).as("");});" | clang-format -style=Google
```
test() {
([]() -> {
int b = 32;
return 3;
}).as();
});
```
Patch by Anders Karlsson (ank)!
Reviewers: klimek
Reviewed By: klimek
Subscribers: danilaml, acoomans, klimek, cfe-commits
Differential Revision: https://reviews.llvm.org/D45719
llvm-svn: 342363
Diffstat (limited to 'clang/test/Analysis/model-file.cpp')
0 files changed, 0 insertions, 0 deletions