diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2024-12-06 11:26:14 +0200 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2024-12-06 14:56:08 +0200 |
commit | 774ef931b1933cd6a231f9343aee989f6598ab5e (patch) | |
tree | 5fccfae8edff402eceb3a527243d7ea16259d6f2 /libbuild2/utility.hxx | |
parent | 2164f1544357c0bad38fd23885290a099a1beb3a (diff) |
Adapt to renaming of some butl::{ucase,lcase,sanitize_identifier}() function overloads
Diffstat (limited to 'libbuild2/utility.hxx')
-rw-r--r-- | libbuild2/utility.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libbuild2/utility.hxx b/libbuild2/utility.hxx index f4fd7bc..99d6806 100644 --- a/libbuild2/utility.hxx +++ b/libbuild2/utility.hxx @@ -73,7 +73,9 @@ namespace build2 using butl::icase_compare_string; using butl::icase_compare_c_string; using butl::lcase; + using butl::make_lcase; using butl::ucase; + using butl::make_ucase; using butl::alpha; using butl::alnum; using butl::digit; @@ -82,6 +84,7 @@ namespace build2 using butl::trim; using butl::next_word; using butl::sanitize_identifier; + using butl::make_sanitized_identifier; using butl::sanitize_strlit; using butl::make_guard; |