From 68f96f9213e849d0d7c4cedf3edeaec99743ee27 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 24 Aug 2015 09:51:15 +0200 Subject: New variable architecture --- build/target | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'build/target') diff --git a/build/target b/build/target index 9e15550..2c05ea1 100644 --- a/build/target +++ b/build/target @@ -262,33 +262,33 @@ namespace build // Lookup, including in groups to which this target belongs and // then in outer scopes (including target type/pattern-specific // variables). If you only want to lookup in this target, do it - // on the the variable map directly. + // on the variable map directly. // - value_proxy + lookup operator[] (const variable&) const; - value_proxy + lookup operator[] (const std::string& name) const { return operator[] (variable_pool.find (name)); } - // Return a value_proxy suitable for assignment. See class scope - // for details. + // Return a value suitable for assignment. See class scope for + // details. // - value_proxy + value& assign (const variable& var) {return vars.assign (var).first;} - value_proxy + value& assign (const std::string& name) {return vars.assign (name).first;} - // Return a value_proxy suitable for appending. See class scope - // for details. + // Return a value suitable for appending. See class scope for + // details. // - value_proxy + value& append (const variable&); - value_proxy + value& append (const std::string& name) { return append (variable_pool.find (name)); -- cgit v1.1