Fix assorted warnings, bump Cargo.lock

This commit is contained in:
Henrik Rydgård
2026-03-24 10:26:49 -06:00
parent 1c31db1b76
commit b8463b9203
4 changed files with 29 additions and 10 deletions
+1 -1
View File
@@ -167,7 +167,7 @@ public:
bool ComputeRecursiveDirSizeIfFast(const std::string &path, int64_t *size) override { return false; }
void Describe(char *buf, size_t size) const override { snprintf(buf, size, "ISOBlock"); }
std::shared_ptr<BlockDevice> GetBlockDevice() { return isoFileSystem_->GetBlockDevice(); }
std::shared_ptr<BlockDevice> GetBlockDevice() override { return isoFileSystem_->GetBlockDevice(); }
private:
std::shared_ptr<IFileSystem> isoFileSystem_;