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.
1 parent bf8c671 commit a16dde1Copy full SHA for a16dde1
llvm/lib/Frontend/HLSL/HLSLRootSignature.cpp
@@ -154,7 +154,7 @@ template <class... Ts> OverloadMethods(Ts...) -> OverloadMethods<Ts...>;
154
void dumpRootElements(raw_ostream &OS, ArrayRef<RootElement> Elements) {
155
OS << "RootElements{";
156
bool First = true;
157
- for (auto Element : Elements) {
+ for (const RootElement &Element : Elements) {
158
if (!First)
159
OS << ",";
160
OS << " ";
0 commit comments