chore(util/lean_path): workaround 'spurious' warning produced by g++ in release mode

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2014-08-03 13:28:05 -07:00
parent 50b0c17092
commit 5611c6a0a0

View file

@ -295,21 +295,26 @@ std::string dirname(char const * fname) {
if (fname == nullptr) if (fname == nullptr)
return "."; return ".";
unsigned i = 0; unsigned i = 0;
optional<unsigned> last_sep; unsigned last_sep = 0;
bool found_sep = false;
char const * it = fname; char const * it = fname;
while (*it) { while (*it) {
if (*it == g_sep) if (*it == g_sep) {
found_sep = true;
last_sep = i; last_sep = i;
}
++i; ++i;
++it; ++it;
} }
if (!last_sep) if (!found_sep) {
return "."; return ".";
} else {
std::string r; std::string r;
for (unsigned i = 0; i < *last_sep; i++) for (unsigned i = 0; i < last_sep; i++)
r.push_back(fname[i]); r.push_back(fname[i]);
return r; return r;
} }
}
std::string path_append(char const * p1, char const * p2) { std::string path_append(char const * p1, char const * p2) {
std::string r(p1); std::string r(p1);