aboutsummaryrefslogtreecommitdiff
path: root/dep.h
diff options
context:
space:
mode:
authorShinichiro Hamaji <shinichiro.hamaji@gmail.com>2015-07-06 17:21:39 +0900
committerShinichiro Hamaji <shinichiro.hamaji@gmail.com>2015-07-06 17:21:39 +0900
commit183dbb9027dde9c12ce6768e647be374e89feed5 (patch)
tree1e67c43a852c17ec3848ebe8191ecd070b3c8479 /dep.h
parentebcc8493163b3a5458d6d5432047c7c6190e4659 (diff)
downloadkati-183dbb9027dde9c12ce6768e647be374e89feed5.tar.gz
[C++] Order only should not be an attribute of node
Also add order_only2.mk
Diffstat (limited to 'dep.h')
-rw-r--r--dep.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/dep.h b/dep.h
index 22434a3..0035080 100644
--- a/dep.h
+++ b/dep.h
@@ -35,9 +35,9 @@ struct DepNode {
Symbol output;
vector<Value*> cmds;
vector<DepNode*> deps;
+ vector<DepNode*> order_onlys;
vector<DepNode*> parents;
bool has_rule;
- bool is_order_only;
bool is_phony;
vector<Symbol> actual_inputs;
Vars* rule_vars;