diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-04-26 09:53:41 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-04-26 09:53:41 +0200 |
commit | 54e24990203f5e123396a44297ea4656ed3b6101 (patch) | |
tree | d6581a15fa0fea6a5de7c7c7e5147f3d7c865cc9 /build/operation.cxx | |
parent | 478c521c09f1962e9d82a3fc4297e5cafb8c0758 (diff) |
Rework resolved prerequisite targets storage
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 cabf73b..39de5f3 100644 --- a/build/operation.cxx +++ b/build/operation.cxx @@ -74,13 +74,13 @@ namespace build target& t (**i); if (verb >= 5) - dump (); + dump (a); level4 ([&]{trace << "matching " << t;}); match (a, t); if (verb >= 5) - dump (); + dump (a); ts.push_back (&t); } |