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/dump.cxx | |
parent | ad720fabd468974e3909f62a0f4e4e3cf0d03aef (diff) |
New variables architecture
Now operator[] is only used for lookup.
Diffstat (limited to 'build/dump.cxx')
-rw-r--r-- | build/dump.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/dump.cxx b/build/dump.cxx index b41e489..dbd9c19 100644 --- a/build/dump.cxx +++ b/build/dump.cxx @@ -57,7 +57,7 @@ namespace build // Variables. // - for (const auto& e: p.variables) + for (const auto& e: p.vars) { const variable& var (e.first); const value_ptr& val (e.second); |