diff options
author | mydeveloperday <mydeveloperday@gmail.com> | 2020-12-23 14:41:06 +0000 |
---|---|---|
committer | mydeveloperday <mydeveloperday@gmail.com> | 2020-12-23 14:45:14 +0000 |
commit | 5426b2f9ed9f6f3a3e1d6452325f7a49a5d08ec4 (patch) | |
tree | 4da020c568c508de6d7180f68512ee541bc238d6 /lldb/source/Commands/CommandObjectCommands.cpp | |
parent | 6e603464959d43e0e430d0f8ac5522b073d68ba1 (diff) | |
download | llvm-5426b2f9ed9f6f3a3e1d6452325f7a49a5d08ec4.zip llvm-5426b2f9ed9f6f3a3e1d6452325f7a49a5d08ec4.tar.gz llvm-5426b2f9ed9f6f3a3e1d6452325f7a49a5d08ec4.tar.bz2 |
[clang-format] PR48535 clang-format Incorrectly Removes Space After C Style Cast When Type Is Not a Pointer
https://bugs.llvm.org/show_bug.cgi?id=48535
using `SpaceAfterCStyleCast: true`
```
size_t idx = (size_t) a;
size_t idx = (size_t) (a - 1);
```
is formatted as:
```
size_t idx = (size_t) a;
size_t idx = (size_t)(a - 1);
```
This revision aims to improve that by improving the function which tries to identify a CastRParen
Reviewed By: curdeius
Differential Revision: https://reviews.llvm.org/D93626
Diffstat (limited to 'lldb/source/Commands/CommandObjectCommands.cpp')
0 files changed, 0 insertions, 0 deletions