summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
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) {
836 } 836 }
837 const auto name_bck_index = path.find_first_of('\\'); 837 const auto name_bck_index = path.find_first_of('\\');
838 const auto name_fwd_index = path.find_first_of('/'); 838 const auto name_fwd_index = path.find_first_of('/');
839 return path.substr(std::min<size_t>(name_bck_index, name_fwd_index) + 1); 839 return path.substr(std::min(name_bck_index, name_fwd_index) + 1);
840} 840}
841 841
842std::string GetFilename(std::string path) { 842std::string GetFilename(std::string path) {