diff options
author | Marius Kintel <marius@kintel.net> | 2013-03-12 16:35:32 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-03-12 16:35:32 (GMT) |
commit | 5628a18f6a0fcf2dd170cac31e386f1ad4f97c0c (patch) | |
tree | baf407ed0a29cca328236ad2cc15e985ad44bf34 /src/value.cc | |
parent | dccc039211eebe3f69c935557bd56abae323c26f (diff) |
boostfs_relative_path was buggy, replaced with boostfs_uncomplete for now
Diffstat (limited to 'src/value.cc')
-rw-r--r-- | src/value.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/value.cc b/src/value.cc index bec803a..ae810a2 100644 --- a/src/value.cc +++ b/src/value.cc @@ -39,7 +39,7 @@ std::ostream &operator<<(std::ostream &stream, const Filename &filename) { - stream << QuotedString(boosty::stringy(relativePath(filename, fs::current_path()))); + stream << QuotedString(boosty::stringy(boostfs_uncomplete(filename, fs::current_path()))); return stream; } |