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.
const&
1 parent 4d839d8 commit d751e40Copy full SHA for d751e40
clang/lib/Frontend/InterfaceStubFunctionsConsumer.cpp
@@ -295,7 +295,7 @@ class InterfaceStubFunctionsConsumer : public ASTConsumer {
295
OS << "Symbols:\n";
296
for (const auto &E : Symbols) {
297
const MangledSymbol &Symbol = E.second;
298
- for (auto Name : Symbol.Names) {
+ for (const auto &Name : Symbol.Names) {
299
OS << " - { Name: \""
300
<< (Symbol.ParentName.empty() || Instance.getLangOpts().CPlusPlus
301
? ""
0 commit comments