aboutsummaryrefslogtreecommitdiff
path: root/butl/path
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-06-13 14:53:51 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-06-13 14:53:51 +0200
commit1cc862e0ccdc48ce2829b62fe095f03558b3b4d7 (patch)
treede92537bf3aa31691c5c97dd4c2ab115c07128f8 /butl/path
parent265c3c71a82906de252637ecbdacf23a99b2ea0c (diff)
Add note about case-insensitive path compare limitation
Diffstat (limited to 'butl/path')
-rw-r--r--butl/path3
1 files changed, 3 insertions, 0 deletions
diff --git a/butl/path b/butl/path
index c2bf682..0645a4b 100644
--- a/butl/path
+++ b/butl/path
@@ -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)
{