diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-04-15 14:10:50 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-04-15 14:10:50 +0200 |
commit | 6535bf6175af32e2514faf75d2742424751a783b (patch) | |
tree | 21312b28ffe2bbb459a57e80a1f8eec498327d9f /build/operation.cxx | |
parent | ad720fabd468974e3909f62a0f4e4e3cf0d03aef (diff) |
New variables architecture
Now operator[] is only used for lookup.
Diffstat (limited to 'build/operation.cxx')
-rw-r--r-- | build/operation.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
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<const dir_path&> (); // Load the buildfile unless it has already been loaded. |