[clang] Fixes and closes issues, #53390 and #58710. Added new controls to IndentNamespaceAliases, IndentUsingDeclarations and DecorateReflowedComments. (PR #102894)
Rajkumar Ananthu via cfe-commits
cfe-commits at lists.llvm.org
Mon Aug 12 16:49:03 PDT 2024
================
@@ -47,8 +47,7 @@ void printLine(llvm::raw_ostream &OS, const UnwrappedLine &Line,
OS << Prefix;
NewLine = false;
}
- OS << I->Tok->Tok.getName() << "["
- << "T=" << (unsigned)I->Tok->getType()
+ OS << I->Tok->Tok.getName() << "[" << "T=" << (unsigned)I->Tok->getType()
----------------
rajkumarananthu wrote:
I ran clang-format on each file before committing the changes, this additional change came in because of that.
https://github.com/llvm/llvm-project/pull/102894
More information about the cfe-commits
mailing list