diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-06-13 14:53:51 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-06-13 14:53:51 +0200 |
commit | 1cc862e0ccdc48ce2829b62fe095f03558b3b4d7 (patch) | |
tree | de92537bf3aa31691c5c97dd4c2ab115c07128f8 /butl/path | |
parent | 265c3c71a82906de252637ecbdacf23a99b2ea0c (diff) |
Add note about case-insensitive path compare limitation
Diffstat (limited to 'butl/path')
-rw-r--r-- | butl/path | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -135,6 +135,9 @@ namespace butl return compare (l.c_str (), l.size (), r.c_str (), r.size ()); } + // @@ Currently for case-insensitive filesystems (Windows) compare() + // works properly only for ASCII. + // static int compare (const C* l, size_type ln, const C* r, size_t rn) { |