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 5a04090 commit 08505f2Copy full SHA for 08505f2
clang/lib/Serialization/GlobalModuleIndex.cpp
@@ -815,8 +815,10 @@ bool GlobalModuleIndexBuilder::writeIndex(llvm::BitstreamWriter &Stream) {
815
IdentifierIndexWriterTrait Trait;
816
817
// Populate the hash table.
818
- for (auto &[Identifier, IDs] : InterestingIdentifiers) {
819
- Generator.insert(Identifier, IDs, Trait);
+ for (InterestingIdentifierMap::iterator I = InterestingIdentifiers.begin(),
+ IEnd = InterestingIdentifiers.end();
820
+ I != IEnd; ++I) {
821
+ Generator.insert(I->first(), I->second, Trait);
822
}
823
824
// Create the on-disk hash table in a buffer.
0 commit comments