[PATCH] D58404: [clang-format] Add basic support for formatting C# files
Simon Pilgrim via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Apr 29 12:14:19 PDT 2019
RKSimon added inline comments.
================
Comment at: lib/Format/FormatTokenLexer.cpp:249
+ Identifier->ColumnWidth += Question->ColumnWidth;
+ Identifier->Type = Identifier->Type;
+ Tokens.erase(Tokens.end() - 1);
----------------
@MyDeveloperDay Should this be
```
Identifier->Type = Question->Type;
```
Reported in https://www.viva64.com/en/b/0629/
Repository:
rC Clang
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D58404/new/
https://reviews.llvm.org/D58404
More information about the cfe-commits
mailing list