aboutsummaryrefslogtreecommitdiff
path: root/exec.h
diff options
context:
space:
mode:
authorSasha Smundak <asmundak@google.com>2018-07-27 10:34:04 -0700
committerSasha Smundak <asmundak@google.com>2018-07-27 15:19:26 -0700
commite8f4d6dba32fd8bf1572e6e40fc1c1a44c99ff9d (patch)
tree55073c00eb4113f3729c53d0e472279a96bbf275 /exec.h
parentae6ffaa32148a1153beccabd77f9a97ebb367937 (diff)
downloadkati-e8f4d6dba32fd8bf1572e6e40fc1c1a44c99ff9d.tar.gz
Do not rewrite dependencies on implicit outputs to be the primary output
Diffstat (limited to 'exec.h')
-rw-r--r--exec.h5
1 files changed, 2 insertions, 3 deletions
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_