aboutsummaryrefslogtreecommitdiff
path: root/cutl/fs/path.txx
diff options
context:
space:
mode:
Diffstat (limited to 'cutl/fs/path.txx')
-rw-r--r--cutl/fs/path.txx8
1 files changed, 1 insertions, 7 deletions
diff --git a/cutl/fs/path.txx b/cutl/fs/path.txx
index e95c890..8939665 100644
--- a/cutl/fs/path.txx
+++ b/cutl/fs/path.txx
@@ -182,15 +182,9 @@ namespace cutl
for (typename paths::const_iterator i (r.begin ()), e (r.end ());
i != e;)
{
-#ifdef _WIN32
- for (size_type j (0), n (i->size ()); j < n; ++j)
- p += tolower ((*i)[j]);
-#else
p += *i;
-#endif
- ++i;
- if (i != e)
+ if (++i != e)
p += traits::directory_separator;
}