Skip to content

Commit 1fb48d5

Browse files
committed
spelling: underlying
Signed-off-by: Josh Soref <[email protected]>
1 parent 96ac7ab commit 1fb48d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/DependencyScan/ModuleDependencyCacheSerialization.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ using ModuleIdentifierArrayKey =
589589
template <>
590590
struct llvm::DenseMapInfo<ModuleIdentifierArrayKind> {
591591
using UnderlyingType = std::underlying_type<ModuleIdentifierArrayKind>::type;
592-
using UnerlyingInfo = DenseMapInfo<UnderlyingType>;
592+
using UnderlyingInfo = DenseMapInfo<UnderlyingType>;
593593

594594
static inline ModuleIdentifierArrayKind getEmptyKey() {
595595
return ModuleIdentifierArrayKind::Empty;
@@ -599,7 +599,7 @@ struct llvm::DenseMapInfo<ModuleIdentifierArrayKind> {
599599
}
600600
static unsigned getHashValue(const ModuleIdentifierArrayKind &arrKind) {
601601
auto underlyingValue = static_cast<UnderlyingType>(arrKind);
602-
return UnerlyingInfo::getHashValue(underlyingValue);
602+
return UnderlyingInfo::getHashValue(underlyingValue);
603603
}
604604
static bool isEqual(const ModuleIdentifierArrayKind &LHS,
605605
const ModuleIdentifierArrayKind &RHS) {

0 commit comments

Comments
 (0)