aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/file.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2024-12-06 11:26:14 +0200
committerKaren Arutyunov <karen@codesynthesis.com>2024-12-06 11:26:14 +0200
commit47b6098418cf35f32bae4d0505423edbbc38a783 (patch)
treed58482aa6c2562da58bc1ddec9d028925ba84302 /libbuild2/file.cxx
parent2164f1544357c0bad38fd23885290a099a1beb3a (diff)
Adapt to renaming of some butl::{ucase,lcase,sanitize_identifier}() function overloads
Diffstat (limited to 'libbuild2/file.cxx')
-rw-r--r--libbuild2/file.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbuild2/file.cxx b/libbuild2/file.cxx
index f755506..fcd3c7c 100644
--- a/libbuild2/file.cxx
+++ b/libbuild2/file.cxx
@@ -2335,7 +2335,7 @@ namespace build2
//
const path* p (nullptr);
- string valv (sanitize_identifier (string (tgt.value)));
+ string valv (sanitize_identifier (tgt.value));
if (tgt.typed ())
{
@@ -2350,7 +2350,7 @@ namespace build2
if (p == nullptr)
{
- string ttv (sanitize_identifier (string (tgt.type)));
+ string ttv (sanitize_identifier (tgt.type));
p = lookup (vp.insert (n + '.' + valv + '.' + ttv), e);
}
}