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.cxx11
1 files changed, 1 insertions, 10 deletions
diff --git a/build2/functions-builtin.cxx b/build2/functions-builtin.cxx
index f9bbda5..d6d9501 100644
--- a/build2/functions-builtin.cxx
+++ b/build2/functions-builtin.cxx
@@ -47,16 +47,7 @@ namespace build2
f["getenv"] = [](names name)
{
- // Note that if the name size is greater than one, we will fail with the
- // proper diagnostics.
- //
- assert (!name.empty ());
-
- string n (name.size () == 1
- ? convert<string> (move (name[0]))
- : convert<string> (move (name)));
-
- return getenv (n);
+ return getenv (convert<string> (move (name)));
};
}
}