aboutsummaryrefslogtreecommitdiff
path: root/build2/functions-builtin.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/functions-builtin.cxx')
-rw-r--r--build2/functions-builtin.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/build2/functions-builtin.cxx b/build2/functions-builtin.cxx
index 45ad7df..8db38c2 100644
--- a/build2/functions-builtin.cxx
+++ b/build2/functions-builtin.cxx
@@ -11,7 +11,7 @@ namespace build2
// otherwise.
//
static inline value
- getvar (const string& name)
+ getenvvar (const string& name)
{
optional<string> v (getenv (name));
@@ -19,7 +19,7 @@ namespace build2
return value ();
names r;
- r.emplace_back (to_name (*v));
+ r.emplace_back (to_name (move (*v)));
return value (move (r));
}
@@ -45,12 +45,12 @@ namespace build2
//
f["getenv"] = [](string name)
{
- return getvar (name);
+ return getenvvar (name);
};
f["getenv"] = [](names name)
{
- return getvar (convert<string> (move (name)));
+ return getenvvar (convert<string> (move (name)));
};
}
}