commit | e8f4d6dba32fd8bf1572e6e40fc1c1a44c99ff9d | [log] [tgz] |
---|---|---|
author | Sasha Smundak <asmundak@google.com> | Fri Jul 27 10:34:04 2018 -0700 |
committer | Sasha Smundak <asmundak@google.com> | Fri Jul 27 15:19:26 2018 -0700 |
tree | 55073c00eb4113f3729c53d0e472279a96bbf275 | |
parent | ae6ffaa32148a1153beccabd77f9a97ebb367937 [diff] [blame] |
Do not rewrite dependencies on implicit outputs to be the primary output
diff --git a/exec.h b/exec.h index 26e4c2c..34fda96 100644 --- a/exec.h +++ b/exec.h
@@ -18,10 +18,9 @@ #include <vector> using namespace std; - -struct DepNode; +#include "dep.h" class Evaluator; -void Exec(const vector<DepNode*>& roots, Evaluator* ev); +void Exec(const vector<NamedDepNode>& roots, Evaluator* ev); #endif // EXEC_H_