Skip to content
Snippets Groups Projects
Commit 41660c89 authored by Lioncash's avatar Lioncash
Browse files

file_util: Remove redundant duplicate return in GetPathWithoutTop()

parent 0f20fa5a
No related branches found
No related tags found
No related merge requests found
......@@ -837,7 +837,6 @@ std::string GetPathWithoutTop(std::string path) {
const auto name_bck_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);
}
std::string GetFilename(std::string path) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment