1
0
Fork 0
forked from eden-emu/eden

Merge pull request #1188 from lioncash/unused

vfs_real: Remove unused variable in CreateDirectoryRelative()
This commit is contained in:
bunnei 2018-08-27 18:24:23 -04:00 committed by GitHub
commit 90fd03015a
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 4AEE18F83AFDEB23

View file

@ -341,7 +341,6 @@ std::shared_ptr<VfsFile> RealVfsDirectory::CreateFileRelative(std::string_view p
std::shared_ptr<VfsDirectory> RealVfsDirectory::CreateDirectoryRelative(std::string_view path) {
const auto full_path = FileUtil::SanitizePath(this->path + DIR_SEP + std::string(path));
auto parent = std::string(FileUtil::GetParentPath(full_path));
return base.CreateDirectory(full_path, perms);
}