Skip to content

Commit bf8c671

Browse files
committed
clang-format
1 parent 403dbf8 commit bf8c671

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
@@ -160,13 +160,9 @@ void dumpRootElements(raw_ostream &OS, ArrayRef<RootElement> Elements) {
160160
OS << " ";
161161
First = false;
162162
std::visit(OverloadMethods{
163-
[&OS](DescriptorTable Table) {
164-
Table.dump(OS);
165-
},
166-
[&OS](DescriptorTableClause Clause) {
167-
Clause.dump(OS);
168-
}
169-
}, Element);
163+
[&OS](DescriptorTable Table) { Table.dump(OS); },
164+
[&OS](DescriptorTableClause Clause) { Clause.dump(OS); }},
165+
Element);
170166
}
171167
OS << "}";
172168
}

0 commit comments

Comments
 (0)