diff options
Diffstat (limited to 'src/fs')
-rw-r--r-- | src/fs/paths.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/fs/paths.cpp b/src/fs/paths.cpp index b53736024..4eaf6ac60 100644 --- a/src/fs/paths.cpp +++ b/src/fs/paths.cpp @@ -146,8 +146,7 @@ std::string removeLast(const std::string &str) } if (pos2 != std::string::npos) return str.substr(0, pos2); - else - return str; + return str; } #ifdef WIN32 @@ -173,10 +172,7 @@ std::string getSelfName() buf[sz] = 0; return buf; } - else - { - return ""; - } + return ""; } #else // WIN32 |