소스 검색

file_util: Remove explicit type from std::min() in GetPathWithoutTop()

Given both operands are the same type, there won't be an issue with
overload selection that requires making this explicit.
Lioncash 8 년 전
부모
커밋
34d6a1349c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/common/file_util.cpp

+ 1 - 1
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) {