Преглед изворни кода

file_util: Remove redundant duplicate return in GetPathWithoutTop()

Lioncash пре 8 година
родитељ
комит
41660c8923
1 измењених фајлова са 0 додато и 1 уклоњено
  1. 0 1
      src/common/file_util.cpp

+ 0 - 1
src/common/file_util.cpp

@@ -837,7 +837,6 @@ 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<size_t>(name_bck_index, name_fwd_index) + 1);
 }
 
 std::string GetFilename(std::string path) {