aboutsummaryrefslogtreecommitdiff
path: root/butl/path
diff options
context:
space:
mode:
Diffstat (limited to 'butl/path')
-rw-r--r--butl/path4
1 files changed, 3 insertions, 1 deletions
diff --git a/butl/path b/butl/path
index 7322a15..2040f5f 100644
--- a/butl/path
+++ b/butl/path
@@ -14,6 +14,8 @@
#include <butl/export>
+#include <butl/utility>
+
namespace butl
{
// Wish list/ideas for improvements.
@@ -195,7 +197,7 @@ namespace butl
for (size_type i (0), n (ln < rn ? ln : rn); i != n; ++i)
{
#ifdef _WIN32
- C lc (tolower (l[i])), rc (tolower (r[i]));
+ C lc (lcase (l[i])), rc (lcase (r[i]));
#else
C lc (l[i]), rc (r[i]);
#endif