[PATCH] D148467: [clang-format] Add a new AfterCSharpProperty to BraceWrapping
MyDeveloperDay via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Sun Apr 16 08:21:57 PDT 2023
MyDeveloperDay added inline comments.
================
Comment at: clang/unittests/Format/FormatTestCSharp.cpp:1633
+ "{\n"
+ " string Foo { set; get }\n"
+ "}\n",
----------------
Hmm.. maybe this should be
```
string Foo
{
set;get
}
```
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D148467/new/
https://reviews.llvm.org/D148467
More information about the cfe-commits
mailing list