=?utf-8?q?Tom=C3=A1=C5=A1?= Slanina <[email protected]>
Message-ID:
In-Reply-To: <llvm.org/llvm/llvm-project/pull/[email protected]>
owenca wrote:
With this patch:
```
$ cat a.cc
class foo {};
class bar { int i; };
$ cf -style='{AllowShortRecordsOnASingleLine: Empty}' a.cc
class foo {};
class bar { int i; };
$ cf -style='{AllowShortRecordsOnASingleLine: Never}' a.cc
class foo {};
class bar {
int i;
};
```
Expected:
- `Empty`
```c++
class foo {};
class bar {
int i;
};
```
- `Never`
```c++
class foo {
};
class bar {
int i;
};
```
Am I correct?
https://github.com/llvm/llvm-project/pull/154580
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits