Skip to content

Commit c6a1efd

Browse files
[CAS] Fix a build error when ONDISK_CAS is disable
Fix a build failure for missing a stub function when ondisk cas is disable. Caused by #10096 rdar://146022603 (cherry picked from commit ad2c006)
1 parent e04d9a9 commit c6a1efd

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

llvm/lib/CAS/OnDiskHashMappedTrie.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1598,6 +1598,12 @@ void OnDiskHashMappedTrie::print(
15981598
report_fatal_error("not supported");
15991599
}
16001600

1601+
Error OnDiskHashMappedTrie::validate(
1602+
function_ref<Error(FileOffset, OnDiskHashMappedTrie::ConstValueProxy)>
1603+
RecordVerifier) const {
1604+
report_fatal_error("not supported");
1605+
}
1606+
16011607
size_t OnDiskHashMappedTrie::size() const {
16021608
report_fatal_error("not supported");
16031609
}

0 commit comments

Comments
 (0)