File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -734,9 +734,11 @@ struct DenseMapInfo<swift::SourceFile::ImportedModuleDesc> {
734
734
StringRefDMI::getTombstoneKey ());
735
735
}
736
736
static inline unsigned getHashValue (const ImportedModuleDesc &import ) {
737
- return combineHashValue (ImportedModuleDMI::getHashValue (import .module ),
738
- combineHashValue (ImportOptionsDMI::getHashValue (import .importOptions ),
739
- StringRefDMI::getHashValue (import .filename )));
737
+ return detail::combineHashValue (
738
+ ImportedModuleDMI::getHashValue (import .module ),
739
+ detail::combineHashValue (
740
+ ImportOptionsDMI::getHashValue (import .importOptions ),
741
+ StringRefDMI::getHashValue (import .filename )));
740
742
}
741
743
static bool isEqual (const ImportedModuleDesc &a,
742
744
const ImportedModuleDesc &b) {
Original file line number Diff line number Diff line change @@ -211,8 +211,8 @@ template <> struct DenseMapInfo<swift::irgen::LocalTypeDataKey> {
211
211
swift::irgen::LocalTypeDataKind::forFormalTypeMetadata () };
212
212
}
213
213
static unsigned getHashValue (const LocalTypeDataKey &key) {
214
- return combineHashValue (CanTypeInfo::getHashValue (key.Type ),
215
- key.Kind .getRawValue ());
214
+ return detail:: combineHashValue (CanTypeInfo::getHashValue (key.Type ),
215
+ key.Kind .getRawValue ());
216
216
}
217
217
static bool isEqual (const LocalTypeDataKey &a, const LocalTypeDataKey &b) {
218
218
return a == b;
You can’t perform that action at this time.
0 commit comments