summaryrefslogtreecommitdiff
path: root/src/common/file_util.cpp
diff options
context:
space:
mode:
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) {