diff options
author | Marius Kintel <marius@kintel.net> | 2012-01-15 03:56:38 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2012-01-15 03:56:38 (GMT) |
commit | b975f1a3cadd05b40e73fe5bf5660f6168a45b30 (patch) | |
tree | eb0bbcd762a2ffd75688c5d178727fc427e2e8ab /src/boosty.h | |
parent | 01c23788d73591cfc7b6520f85b1c0d64bfb80b7 (diff) |
bugfix: Default parameter to complete uses current part upon entering main(), not current path when calling
Diffstat (limited to 'src/boosty.h')
-rw-r--r-- | src/boosty.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boosty.h b/src/boosty.h index 588c2a9..2e7d76b 100644 --- a/src/boosty.h +++ b/src/boosty.h @@ -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 ) |