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/boost-utils.h | |
parent | dccc039211eebe3f69c935557bd56abae323c26f (diff) |
boostfs_relative_path was buggy, replaced with boostfs_uncomplete for now
Diffstat (limited to 'src/boost-utils.h')
-rw-r--r-- | src/boost-utils.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/boost-utils.h b/src/boost-utils.h index c431857..3678ecc 100644 --- a/src/boost-utils.h +++ b/src/boost-utils.h @@ -3,6 +3,11 @@ #include <boost/filesystem.hpp> namespace fs = boost::filesystem; -fs::path relativePath(const fs::path &path, const fs::path &relative_to); + +// FIXME: boostfs_relative_path() has been replaced by +// boostfs_uncomplete(), but kept around for now. +fs::path boostfs_relative_path(const fs::path &path, const fs::path &relative_to); +fs::path boostfs_normalize(const fs::path &path); +fs::path boostfs_uncomplete(fs::path const p, fs::path const base); #endif |