bugfix: Default parameter to complete uses current part upon entering main(), not current path when calling

felipesanches-svg
Marius Kintel 2012-01-15 04:56:38 +01:00
parent 01c23788d7
commit b975f1a3ca
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ inline bool is_absolute( fs::path p )
inline fs::path absolute( fs::path p )
{
return fs::complete( p );
return fs::complete(p, fs::current_path());
}
inline std::string stringy( fs::path p )