*** empty log message ***

This commit is contained in:
John Wiegley 2006-03-17 01:25:39 +00:00
parent 9800e3febc
commit ab748ed13e

View file

@ -106,7 +106,8 @@ std::string expand_path(const std::string& path)
return result;
}
inline std::string resolve_path(const std::string& path) {
std::string resolve_path(const std::string& path)
{
if (path[0] == '~')
return expand_path(path);
return path;