X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Ffs%2Fpath.cpp;h=52b1da2241dc9a762dbab76a6caa2a0f9bfa3478;hp=f742b11241aeb280e46322793b68ebbb37fa6aea;hb=eeb6ed7b20d56578ff8c68f3c94e887d5ac768ee;hpb=e1452710edb6b1d0ebceb4b9273dae4b2f899630 diff --git a/source/fs/path.cpp b/source/fs/path.cpp index f742b11..52b1da2 100644 --- a/source/fs/path.cpp +++ b/source/fs/path.cpp @@ -73,11 +73,6 @@ Path Path::operator/(const Path &p) const return a; } -/** -Attaches another path to the end of this one. An absolute path replaces the -existing data. ".." elements annihilate the last component and "." elements -are ignored. -*/ Path &Path::operator/=(const Path &p) { if(p.is_absolute()) @@ -148,10 +143,6 @@ void Path::init(const string &p) } } -/** -Adds a single component to the path, emulating the cd command. Fails horribly -if comp contains a separator character. -*/ void Path::add_component(const string &comp) { if(comp.empty())