aboutsummaryrefslogtreecommitdiff
path: root/build2/scope
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-02-12 16:10:48 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-02-12 16:10:48 +0200
commit4e665067ff264c55086fdfb776a95b0fbb4d432c (patch)
tree2371403561c0a3d754792f68d2515cae71dff565 /build2/scope
parent00ed965e4a29f66666d2bf4372d2d6919c29664e (diff)
<types>/<utility> scheme cleanup
Diffstat (limited to 'build2/scope')
-rw-r--r--build2/scope7
1 files changed, 3 insertions, 4 deletions
diff --git a/build2/scope b/build2/scope
index 192ba10..158f967 100644
--- a/build2/scope
+++ b/build2/scope
@@ -5,7 +5,6 @@
#ifndef BUILD2_SCOPE
#define BUILD2_SCOPE
-#include <functional> // function
#include <unordered_set>
#include <unordered_map>
@@ -96,7 +95,7 @@ namespace build2
}
build2::lookup<const value>
- operator[] (const std::string& name) const
+ operator[] (const string& name) const
{
return operator[] (var_pool.find (name));
}
@@ -142,7 +141,7 @@ namespace build2
assign (const variable& var) {return vars.assign (var).first.get ();}
value&
- assign (const std::string& name, const build2::value_type* type = nullptr)
+ assign (const string& name, const build2::value_type* type = nullptr)
{
return vars.assign (name, type).first.get ();
}
@@ -157,7 +156,7 @@ namespace build2
append (const variable&);
value&
- append (const std::string& name)
+ append (const string& name)
{
return append (var_pool.find (name));
}