File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -739,15 +739,12 @@ struct DenseMapInfo<swift::AttributedImport<ModuleInfo>> {
739
739
return detail::combineHashValue (
740
740
ModuleInfoDMI::getHashValue (import .module ),
741
741
detail::combineHashValue (
742
- SourceLocDMI::getHashValue (import .importLoc ),
743
- detail::combineHashValue (
744
- ImportOptionsDMI::getHashValue (import .options ),
745
- StringRefDMI::getHashValue (import .sourceFileArg ))));
742
+ ImportOptionsDMI::getHashValue (import .options ),
743
+ StringRefDMI::getHashValue (import .sourceFileArg )));
746
744
}
747
745
static bool isEqual (const AttributedImport &a,
748
746
const AttributedImport &b) {
749
747
return ModuleInfoDMI::isEqual (a.module , b.module ) &&
750
- SourceLocDMI::isEqual (a.importLoc , b.importLoc ),
751
748
ImportOptionsDMI::isEqual (a.options , b.options ) &&
752
749
StringRefDMI::isEqual (a.sourceFileArg , b.sourceFileArg ) &&
753
750
a.spiGroups == b.spiGroups ;
You can’t perform that action at this time.
0 commit comments