missing tab to space

This commit is contained in:
XhmikosR 2012-09-29 18:28:14 +03:00 committed by PKEuS
parent b2a36d5841
commit 941945bf42
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ void getDeps(const std::string &filename, std::vector<std::string> &depfiles)
std::string::size_type pos2 = line.find("\"", pos1);
std::string hfile(path + line.substr(pos1, pos2 - pos1));
if (hfile.find("/../") != std::string::npos) // TODO: Ugly fix
if (hfile.find("/../") != std::string::npos) // TODO: Ugly fix
hfile.erase(0, 4 + hfile.find("/../"));
getDeps(hfile, depfiles);
}