[clang] [ClangFormat] Fix indent in child lines within a macro argument. (PR #82523)
Owen Pan via cfe-commits
cfe-commits at lists.llvm.org
Fri Feb 23 00:24:32 PST 2024
================
@@ -90,6 +90,12 @@ class ScopedDeclarationState {
} // end anonymous namespace
+std::ostream &operator<<(std::ostream &Stream, const UnwrappedLine &Line) {
+ llvm::raw_os_ostream OS(Stream);
+ printLine(OS, Line);
+ return Stream;
+}
+
----------------
owenca wrote:
Delete.
https://github.com/llvm/llvm-project/pull/82523
More information about the cfe-commits
mailing list