summaryrefslogtreecommitdiffstats
path: root/src/state.h
diff options
context:
space:
mode:
authorRobert Iannucci <robbie@rail.com>2013-03-23 21:31:05 (GMT)
committerRobert Iannucci <robbie@rail.com>2013-03-23 21:31:05 (GMT)
commitf31836a18621a5477ae6888d832afb96f1a56f52 (patch)
treeb893cbdc1932c9b2cd3de443e9afe56be785d753 /src/state.h
parent8e70a53058a74d3582c609fd9f7c133dae7387b4 (diff)
downloadNinja-f31836a18621a5477ae6888d832afb96f1a56f52.zip
Ninja-f31836a18621a5477ae6888d832afb96f1a56f52.tar.gz
Ninja-f31836a18621a5477ae6888d832afb96f1a56f52.tar.bz2
Fix debug build on linux (type strictness).
Diffstat (limited to 'src/state.h')
-rw-r--r--src/state.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/state.h b/src/state.h
index 279a64a..7e3aead 100644
--- a/src/state.h
+++ b/src/state.h
@@ -76,7 +76,8 @@ struct Pool {
static bool WeightedEdgeCmp(const Edge* a, const Edge* b);
- set<Edge*,bool(*)(const Edge*, const Edge*)> delayed_;
+ typedef set<Edge*,bool(*)(const Edge*, const Edge*)> DelayedEdges;
+ DelayedEdges delayed_;
};
/// Global state (file status, loaded rules) for a single run.