Skip to content

Commit f23c0e6

Browse files
[CAS] Fix #161548 for broken build (#162116)
Followup to fix the broken configuraiton.
1 parent 3f3d522 commit f23c0e6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

llvm/lib/CAS/OnDiskTrieRawHashMap.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1136,23 +1136,23 @@ OnDiskTrieRawHashMap::create(const Twine &PathTwine, const Twine &TrieNameTwine,
11361136
"OnDiskTrieRawHashMap is not supported");
11371137
}
11381138

1139-
Expected<OnDiskTrieRawHashMap::pointer>
1139+
Expected<OnDiskTrieRawHashMap::OnDiskPtr>
11401140
OnDiskTrieRawHashMap::insertLazy(ArrayRef<uint8_t> Hash,
11411141
LazyInsertOnConstructCB OnConstruct,
11421142
LazyInsertOnLeakCB OnLeak) {
11431143
return createStringError(make_error_code(std::errc::not_supported),
11441144
"OnDiskTrieRawHashMap is not supported");
11451145
}
11461146

1147-
Expected<OnDiskTrieRawHashMap::const_pointer>
1147+
Expected<OnDiskTrieRawHashMap::ConstOnDiskPtr>
11481148
OnDiskTrieRawHashMap::recoverFromFileOffset(FileOffset Offset) const {
11491149
return createStringError(make_error_code(std::errc::not_supported),
11501150
"OnDiskTrieRawHashMap is not supported");
11511151
}
11521152

1153-
OnDiskTrieRawHashMap::const_pointer
1153+
OnDiskTrieRawHashMap::ConstOnDiskPtr
11541154
OnDiskTrieRawHashMap::find(ArrayRef<uint8_t> Hash) const {
1155-
return const_pointer();
1155+
return ConstOnDiskPtr();
11561156
}
11571157

11581158
void OnDiskTrieRawHashMap::print(

0 commit comments

Comments
 (0)