Skip to content

Commit 6382030

Browse files
benlangmuirjansvoboda11
authored andcommitted
[libclang][deps] Fix build after removal of ModuleIDHasher
We can now use a DenseMap instead. rdar://99151069
1 parent c9adf31 commit 6382030

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/tools/libclang/CDependencies.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ class OutputLookup {
188188
std::string lookupModuleOutput(const ModuleID &ID, ModuleOutputKind MOK);
189189

190190
private:
191-
std::unordered_map<ModuleID, std::string, ModuleIDHasher> PCMPaths;
191+
llvm::DenseMap<ModuleID, std::string> PCMPaths;
192192
void *MLOContext;
193193
CXModuleLookupOutputCallback *MLO;
194194
};

0 commit comments

Comments
 (0)