We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1d61e31 + 5491505 commit f7257c2Copy full SHA for f7257c2
lib/AST/ASTDumper.cpp
@@ -952,14 +952,16 @@ namespace {
952
OS.indent(Indent) << "(#if_decl\n";
953
Indent += 2;
954
for (auto &Clause : ICD->getClauses()) {
955
- OS.indent(Indent) << (Clause.Cond ? "(#if:\n" : "#else");
+ OS.indent(Indent) << (Clause.Cond ? "(#if:\n" : "\n(#else:\n");
956
if (Clause.Cond)
957
printRec(Clause.Cond);
958
959
for (auto D : Clause.Members) {
960
OS << '\n';
961
printRec(D);
962
}
963
+
964
+ OS << ')';
965
966
967
Indent -= 2;
0 commit comments