diff options
author | Nicolas Despres <nicolas.despres@gmail.com> | 2011-04-14 12:51:15 (GMT) |
---|---|---|
committer | Nicolas Despres <nicolas.despres@gmail.com> | 2011-04-26 11:20:08 (GMT) |
commit | 2e616a9c46d681294b72764423a0ffc08f10cb1f (patch) | |
tree | 4c7e4ecdc65860f691279b9727e30cb66dc7a37a /src | |
parent | 7229d9bf7e5f48fe7f15d6164c84a6aeb30a954b (diff) | |
download | Ninja-2e616a9c46d681294b72764423a0ffc08f10cb1f.zip Ninja-2e616a9c46d681294b72764423a0ffc08f10cb1f.tar.gz Ninja-2e616a9c46d681294b72764423a0ffc08f10cb1f.tar.bz2 |
Document.
Diffstat (limited to 'src')
-rw-r--r-- | src/ninja.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ninja.h b/src/ninja.h index 706cb9c..2590e63 100644 --- a/src/ninja.h +++ b/src/ninja.h @@ -75,7 +75,9 @@ struct State { void AddOut(Edge* edge, const string& path); StatCache stat_cache_; + /// All the rules used in the graph. map<string, const Rule*> rules_; + /// All the edges of the graph. vector<Edge*> edges_; BindingEnv bindings_; struct BuildLog* build_log_; |