From 6535bf6175af32e2514faf75d2742424751a783b Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 15 Apr 2015 14:10:50 +0200 Subject: New variables architecture Now operator[] is only used for lookup. --- build/operation.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'build/operation.cxx') diff --git a/build/operation.cxx b/build/operation.cxx index bceede5..cabf73b 100644 --- a/build/operation.cxx +++ b/build/operation.cxx @@ -49,8 +49,8 @@ namespace build // scope& base (scopes[out_base]); - base.variables["out_base"] = out_base; - auto v (base.variables["src_base"] = src_base); + base.assign ("out_base") = out_base; + auto v (base.assign ("src_base") = src_base); base.src_path_ = &v.as (); // Load the buildfile unless it has already been loaded. -- cgit v1.1