[PATCH] D123676: [clang-format] Fix WhitespaceSensitiveMacros not being honoured when macro closing parenthesis is followed by a newline.
ksyx via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Apr 13 06:42:04 PDT 2022
ksyx added inline comments.
================
Comment at: clang/lib/Format/FormatTokenLexer.h:117-120
+ struct MacroTokenInfo {
+ TokenType Type;
+ bool Finalized;
+ };
----------------
Would making constructor of `struct MacroTokenInfo` having default parameter or overloading it help avoiding the change of adding `, /*Finalized=*/false` to the existing initializer lists?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D123676/new/
https://reviews.llvm.org/D123676
More information about the cfe-commits
mailing list