File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -1319,6 +1319,10 @@ void OnDiskHashMappedTrie::print(
1319
1319
report_fatal_error (" not supported" );
1320
1320
}
1321
1321
1322
+ size_t OnDiskHashMappedTrie::size () const {
1323
+ report_fatal_error (" not supported" );
1324
+ }
1325
+
1322
1326
struct OnDiskDataAllocator ::ImplType {};
1323
1327
1324
1328
Expected<OnDiskDataAllocator> OnDiskDataAllocator::create (
@@ -1336,6 +1340,14 @@ const char *OnDiskDataAllocator::beginData(FileOffset Offset) const {
1336
1340
report_fatal_error (" not supported" );
1337
1341
}
1338
1342
1343
+ MutableArrayRef<uint8_t > OnDiskDataAllocator::getUserHeader () {
1344
+ report_fatal_error (" not supported" );
1345
+ }
1346
+
1347
+ size_t OnDiskDataAllocator::size () const {
1348
+ report_fatal_error (" not supported" );
1349
+ }
1350
+
1339
1351
#endif // LLVM_ENABLE_ONDISK_CAS
1340
1352
1341
1353
OnDiskHashMappedTrie::OnDiskHashMappedTrie (std::unique_ptr<ImplType> Impl)
You can’t perform that action at this time.
0 commit comments