diff options
author | Lioncash <mathew1800@gmail.com> | 2018-07-21 15:18:23 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-07-21 15:18:23 -0400 |
commit | 41660c8923d15d634ccc98fd08199c9a78496320 (patch) | |
tree | 31541aee63226185ee4263bc6a8132e085210d62 /src/common/file_util.cpp | |
parent | 0f20fa5a1e179bdad07fe1e0e58243d1927274fd (diff) |
file_util: Remove redundant duplicate return in GetPathWithoutTop()
Diffstat (limited to 'src/common/file_util.cpp')
-rw-r--r-- | src/common/file_util.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp index c882ab39f5..29dd16541a 100644 --- a/src/common/file_util.cpp +++ b/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) { |