summaryrefslogtreecommitdiffstats
path: root/src/state.h
diff options
context:
space:
mode:
authorThiago Farina <tfarina@chromium.org>2012-05-23 19:17:30 (GMT)
committerThiago Farina <tfarina@chromium.org>2012-05-23 19:17:30 (GMT)
commit70789ec61c4b96b2a3c575182897d58211df1206 (patch)
treee2830be9a450a7254604e3c7bbc8efedeee8a487 /src/state.h
parentb6664431cb5275389d6e25d5e29c67796b7281e7 (diff)
downloadNinja-70789ec61c4b96b2a3c575182897d58211df1206.zip
Ninja-70789ec61c4b96b2a3c575182897d58211df1206.tar.gz
Ninja-70789ec61c4b96b2a3c575182897d58211df1206.tar.bz2
No need to write 'struct' before type name when declaraing variables in C++.
Signed-off-by: Thiago Farina <tfarina@chromium.org>
Diffstat (limited to 'src/state.h')
-rw-r--r--src/state.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state.h b/src/state.h
index 845c947..23ca12b 100644
--- a/src/state.h
+++ b/src/state.h
@@ -72,7 +72,7 @@ struct State {
BindingEnv bindings_;
vector<Node*> defaults_;
- struct BuildLog* build_log_;
+ BuildLog* build_log_;
};
#endif // NINJA_STATE_H_