[VFS] Make ResolvePath argument a const reference.

This commit is contained in:
gibbed
2019-07-29 16:04:25 -05:00
parent 7c7d80103e
commit e72cacc986
7 changed files with 7 additions and 7 deletions

View File

@@ -29,7 +29,7 @@ class DiscImageDevice : public Device {
bool Initialize() override;
void Dump(StringBuffer* string_buffer) override;
Entry* ResolvePath(std::string path) override;
Entry* ResolvePath(const std::string& path) override;
uint32_t total_allocation_units() const override {
return uint32_t(mmap_->size() / sectors_per_allocation_unit() /