MetaFileSystem: Clean up unused function

This commit is contained in:
Henrik Rydgård
2024-11-29 14:13:41 +01:00
parent 14815d9330
commit b6f648eecc
3 changed files with 9 additions and 11 deletions

View File

@@ -682,3 +682,9 @@ int64_t MetaFileSystem::ComputeRecursiveDirectorySize(const std::string &filenam
return false;
}
}
bool MetaFileSystem::ComputeRecursiveDirSizeIfFast(const std::string &path, int64_t *size) {
// Shouldn't be called. Can't recurse MetaFileSystem.
_dbg_assert_(false);
return false;
}