mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-11-15 19:20:08 +00:00
file_util: Remove redundant duplicate return in GetPathWithoutTop()
This commit is contained in:
parent
0f20fa5a1e
commit
41660c8923
@ -837,7 +837,6 @@ std::string GetPathWithoutTop(std::string path) {
|
|||||||
const auto name_bck_index = path.find_first_of('\\');
|
const auto name_bck_index = path.find_first_of('\\');
|
||||||
const auto name_fwd_index = path.find_first_of('/');
|
const auto name_fwd_index = path.find_first_of('/');
|
||||||
return path.substr(std::min<size_t>(name_bck_index, name_fwd_index) + 1);
|
return path.substr(std::min<size_t>(name_bck_index, name_fwd_index) + 1);
|
||||||
return path.substr(std::min<size_t>(name_bck_index, name_fwd_index) + 1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string GetFilename(std::string path) {
|
std::string GetFilename(std::string path) {
|
||||||
|
Loading…
Reference in New Issue
Block a user