X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Ffs%2Fpath.cpp;h=a5a5a10a5532133582172da6abcdf93acdf62ea6;hp=0fe95d65df943a9f0b4b1b4bf006035a4e7dccee;hb=f24e7b96e76b63c9b9b8a6bce4c7a9db64276ea8;hpb=eca23d70c9e2c0519125f2fd92c212d3c94f7736 diff --git a/source/fs/path.cpp b/source/fs/path.cpp index 0fe95d6..a5a5a10 100644 --- a/source/fs/path.cpp +++ b/source/fs/path.cpp @@ -7,8 +7,8 @@ using namespace std; namespace { -#ifdef WIN32 -inline bool is_windows_drive(const std::string &p) +#ifdef _WIN32 +inline bool is_windows_drive(const string &p) { return (p.size()==2 && ((p[0]>='A' && p[0]<='Z') || (p[0]>='a' && p[0]<='z')) && p[1]==':'); } #endif @@ -58,8 +58,8 @@ unsigned Path::size() const bool Path::is_absolute() const { -#ifdef WIN32 - if(is_windows_drive((*this)[0])) +#ifdef _WIN32 + if(!empty() && is_windows_drive((*this)[0])) return true; #endif return path[0]==DIRSEP; @@ -68,7 +68,7 @@ bool Path::is_absolute() const Path Path::subpath(unsigned start, unsigned count) const { Path result; - Iterator i = begin(); + auto i = begin(); for(unsigned j=0; (j=0) { - for(Iterator i=begin(); i!=end(); ++i, --n) + for(auto i=begin(); i!=end(); ++i, --n) if(!n) return *i; } else { - for(Iterator i=end(); i!=begin();) + for(auto i=end(); i!=begin();) { --i; if(!++n) @@ -192,7 +192,7 @@ string Path::operator[](int n) const bool Path::operator==(const Path &other) const { -#ifdef WIN32 +#ifdef _WIN32 return strcasecmp(path, other.path)==0; #else return path==other.path; @@ -201,7 +201,7 @@ bool Path::operator==(const Path &other) const bool Path::operator<(const Path &other) const { -#ifdef WIN32 +#ifdef _WIN32 return strcasecmp(path, other.path)<0; #else return path(const Path &other) const { -#ifdef WIN32 +#ifdef _WIN32 return strcasecmp(path, other.path)>0; #else return path>other.path; @@ -264,10 +264,7 @@ void Path::Iterator::update() string::size_type start = 0; if(iter!=path->separators.begin()) - { - PositionArray::const_iterator prev = iter; - start = *--prev+1; - } + start = *prev(iter)+1; string::size_type slash = string::npos; if(iter!=path->separators.end())