From 1cc862e0ccdc48ce2829b62fe095f03558b3b4d7 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 13 Jun 2016 14:53:51 +0200 Subject: Add note about case-insensitive path compare limitation --- butl/path | 3 +++ 1 file changed, 3 insertions(+) (limited to 'butl/path') 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) { -- cgit v1.1