Skip to content

Commit d725cdb

Browse files
committed
clang-format
1 parent 8690bb3 commit d725cdb

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

llvm/lib/Frontend/HLSL/HLSLRootSignature.cpp

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -165,13 +165,9 @@ void dumpRootElements(raw_ostream &OS, ArrayRef<RootElement> Elements) {
165165
OS << " ";
166166
First = false;
167167
std::visit(OverloadMethods{
168-
[&OS](DescriptorTable Table) {
169-
Table.dump(OS);
170-
},
171-
[&OS](DescriptorTableClause Clause) {
172-
Clause.dump(OS);
173-
}
174-
}, Element);
168+
[&OS](DescriptorTable Table) { Table.dump(OS); },
169+
[&OS](DescriptorTableClause Clause) { Clause.dump(OS); }},
170+
Element);
175171
}
176172
OS << "}";
177173
}

0 commit comments

Comments
 (0)