diff options
author | Clement Courbet <courbet@google.com> | 2025-01-15 13:07:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-15 13:07:42 +0100 |
commit | 6affc1837537a802531a5394535f1f0b7ca865cb (patch) | |
tree | 0adcac9303c35a8e5d0f593df5717ac46b030318 /flang/lib/Frontend/CompilerInvocation.cpp | |
parent | c8bbbaa5c70a32f31a072740c87708be8f15f831 (diff) | |
download | llvm-6affc1837537a802531a5394535f1f0b7ca865cb.zip llvm-6affc1837537a802531a5394535f1f0b7ca865cb.tar.gz llvm-6affc1837537a802531a5394535f1f0b7ca865cb.tar.bz2 |
[clang-reorder-fields] Move trailing comments. (#122918)
Currently, trailing comments get mixed up:
```
struct Foo {
int a; // This one is the cool field
// within the struct.
int b;
};
```
becomes:
```
struct Foo {
int b; // This one is the cool field
// within the struct.
int a;
};
```
This should be:
```
struct Foo {
int b;
int a; // This one is the cool field
// within the struct.
};
```
Diffstat (limited to 'flang/lib/Frontend/CompilerInvocation.cpp')
0 files changed, 0 insertions, 0 deletions