=?utf-8?q?Tom=C3=A1=C5=A1?= Slanina <itzexpoe...@gmail.com>
Message-ID:
In-Reply-To: <llvm.org/llvm/llvm-project/pull/154...@github.com>


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
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to