diff options
Diffstat (limited to 'src/state.h')
-rw-r--r-- | src/state.h | 3 |
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. |