diff options
Diffstat (limited to '')
| -rw-r--r-- | src/common/file_util.cpp | 3 |
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 | ||
| 845 | std::string GetFilename(std::string path) { | 844 | std::string GetFilename(std::string path) { |