Use const auto in scriptextension
This commit is contained in:
parent
4ed09b1828
commit
a7de8bdbce
@ -120,9 +120,9 @@ namespace Components
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
auto p = std::filesystem::path(path);
|
const auto p = std::filesystem::path(path);
|
||||||
std::string folder = p.parent_path().string();
|
const auto& folder = p.parent_path().string();
|
||||||
std::string file = p.filename().string();
|
const auto& file = p.filename().string();
|
||||||
Game::Scr_AddInt(FileSystem::DeleteFile(folder, file));
|
Game::Scr_AddInt(FileSystem::DeleteFile(folder, file));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user