diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2024-12-06 11:26:14 +0200 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2024-12-06 11:26:14 +0200 |
commit | 47b6098418cf35f32bae4d0505423edbbc38a783 (patch) | |
tree | d58482aa6c2562da58bc1ddec9d028925ba84302 /libbuild2/cc | |
parent | 2164f1544357c0bad38fd23885290a099a1beb3a (diff) |
Adapt to renaming of some butl::{ucase,lcase,sanitize_identifier}() function overloads
Diffstat (limited to 'libbuild2/cc')
-rw-r--r-- | libbuild2/cc/common.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libbuild2/cc/common.cxx b/libbuild2/cc/common.cxx index c1e60d2..dfc78e7 100644 --- a/libbuild2/cc/common.cxx +++ b/libbuild2/cc/common.cxx @@ -1567,8 +1567,7 @@ namespace build2 // string d ("-DLIB"); - d += sanitize_identifier ( - ucase (const_cast<const string&> (t.name))); + d += sanitize_identifier (ucase (t.name)); d += '_'; d += suffix; |