Selaa lähdekoodia

Merge pull request #759 from lioncash/redundant

file_util: Remove redundant duplicate return in GetPathWithoutTop()
bunnei 8 vuotta sitten
vanhempi
commit
53a219f163
1 muutettua tiedostoa jossa 1 lisäystä ja 2 poistoa
  1. 1 2
      src/common/file_util.cpp

+ 1 - 2
src/common/file_util.cpp

@@ -838,8 +838,7 @@ std::string GetPathWithoutTop(std::string path) {
     }
     }
     const auto name_bck_index = path.find_first_of('\\');
     const auto name_bck_index = path.find_first_of('\\');
     const auto name_fwd_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<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) {
 std::string GetFilename(std::string path) {