File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -589,7 +589,7 @@ using ModuleIdentifierArrayKey =
589
589
template <>
590
590
struct llvm ::DenseMapInfo<ModuleIdentifierArrayKind> {
591
591
using UnderlyingType = std::underlying_type<ModuleIdentifierArrayKind>::type;
592
- using UnerlyingInfo = DenseMapInfo<UnderlyingType>;
592
+ using UnderlyingInfo = DenseMapInfo<UnderlyingType>;
593
593
594
594
static inline ModuleIdentifierArrayKind getEmptyKey () {
595
595
return ModuleIdentifierArrayKind::Empty;
@@ -599,7 +599,7 @@ struct llvm::DenseMapInfo<ModuleIdentifierArrayKind> {
599
599
}
600
600
static unsigned getHashValue (const ModuleIdentifierArrayKind &arrKind) {
601
601
auto underlyingValue = static_cast <UnderlyingType>(arrKind);
602
- return UnerlyingInfo ::getHashValue (underlyingValue);
602
+ return UnderlyingInfo ::getHashValue (underlyingValue);
603
603
}
604
604
static bool isEqual (const ModuleIdentifierArrayKind &LHS,
605
605
const ModuleIdentifierArrayKind &RHS) {
You can’t perform that action at this time.
0 commit comments