]> git.tdb.fi Git - libs/core.git/blobdiff - source/path.h
Style update: spaces around assignments
[libs/core.git] / source / path.h
index 0b946fdcdb18bb00ab79ffe189249946fc5bc8be..e560d3f96c4b3e1ae5b718f5d4a724e4fc8a57c2 100644 (file)
@@ -17,9 +17,9 @@ namespace FS {
 enum
 {
 #ifdef WIN32
-       DIRSEP='\\'
+       DIRSEP = '\\'
 #else
-       DIRSEP='/'
+       DIRSEP = '/'
 #endif
 };
 
@@ -67,7 +67,7 @@ public:
        bool is_absolute() const;
 
        /// Extracts a range of components from the path.
-       Path subpath(unsigned start, unsigned count=static_cast<unsigned>(-1)) const;
+       Path subpath(unsigned start, unsigned count = static_cast<unsigned>(-1)) const;
 
        /// Concatenates this path with another one, with usual filesystem semantics
        Path operator/(const Path &p) const;