summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-21 21:19:30 +0200
committerLioncash <mathew1800@gmail.com>2018-07-21 21:19:32 +0200
commit34d6a1349cc23b10b84ef289dca9825199d735c8 (patch)
tree4ac8a5333271b0e627bf0addadd8ab4fbe163deb
parentfile_util: Remove redundant duplicate return in GetPathWithoutTop() (diff)
downloadyuzu-34d6a1349cc23b10b84ef289dca9825199d735c8.tar
yuzu-34d6a1349cc23b10b84ef289dca9825199d735c8.tar.gz
yuzu-34d6a1349cc23b10b84ef289dca9825199d735c8.tar.bz2
yuzu-34d6a1349cc23b10b84ef289dca9825199d735c8.tar.lz
yuzu-34d6a1349cc23b10b84ef289dca9825199d735c8.tar.xz
yuzu-34d6a1349cc23b10b84ef289dca9825199d735c8.tar.zst
yuzu-34d6a1349cc23b10b84ef289dca9825199d735c8.zip
Diffstat (limited to '')
-rw-r--r--src/common/file_util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp
index 29dd16541..efcf58ca6 100644
--- a/src/common/file_util.cpp
+++ b/src/common/file_util.cpp
@@ -836,7 +836,7 @@ 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(name_bck_index, name_fwd_index) + 1);
}
std::string GetFilename(std::string path) {