summaryrefslogtreecommitdiff
path: root/src/common/file_util.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2018-07-21 18:50:38 -0700
committerGravatar GitHub2018-07-21 18:50:38 -0700
commit53a219f163941988826aec4496a61ec36c69ce7d (patch)
treebb42901196f8f8cf5d5adc29aa71890c8b50ba63 /src/common/file_util.cpp
parentMerge pull request #748 from lioncash/namespace (diff)
parentfile_util: Remove explicit type from std::min() in GetPathWithoutTop() (diff)
downloadyuzu-53a219f163941988826aec4496a61ec36c69ce7d.tar.gz
yuzu-53a219f163941988826aec4496a61ec36c69ce7d.tar.xz
yuzu-53a219f163941988826aec4496a61ec36c69ce7d.zip
Merge pull request #759 from lioncash/redundant
file_util: Remove redundant duplicate return in GetPathWithoutTop()
Diffstat (limited to 'src/common/file_util.cpp')
-rw-r--r--src/common/file_util.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp
index 1e28f7cbb..d8163a4a8 100644
--- a/src/common/file_util.cpp
+++ b/src/common/file_util.cpp
@@ -838,8 +838,7 @@ std::string GetPathWithoutTop(std::string path) {
838 } 838 }
839 const auto name_bck_index = path.find_first_of('\\'); 839 const auto name_bck_index = path.find_first_of('\\');
840 const auto name_fwd_index = path.find_first_of('/'); 840 const auto name_fwd_index = path.find_first_of('/');
841 return path.substr(std::min<size_t>(name_bck_index, name_fwd_index) + 1); 841 return path.substr(std::min(name_bck_index, name_fwd_index) + 1);
842 return path.substr(std::min<size_t>(name_bck_index, name_fwd_index) + 1);
843} 842}
844 843
845std::string GetFilename(std::string path) { 844std::string GetFilename(std::string path) {