aboutsummaryrefslogtreecommitdiff
path: root/lib/Parse/Parser.cpp
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2009-08-25 00:17:23 +0000
committerDouglas Gregor <dgregor@apple.com>2009-08-25 00:17:23 +0000
commitb13bc41a8b0e2d8b7f7d824d5836ce5ae0b8ae5f (patch)
tree8414723b6c7e5401934483a51b2e8204168a2420 /lib/Parse/Parser.cpp
parente666b1b1fbe17ce6cc8d417690c61cd05f5b0002 (diff)
Eliminate a GCC warning
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@79962 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Parse/Parser.cpp')
-rw-r--r--lib/Parse/Parser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Parse/Parser.cpp b/lib/Parse/Parser.cpp
index efaf1d5398..380df7f0e0 100644
--- a/lib/Parse/Parser.cpp
+++ b/lib/Parse/Parser.cpp
@@ -35,7 +35,7 @@ public:
Parser::Parser(Preprocessor &pp, Action &actions)
: CrashInfo(*this), PP(pp), Actions(actions), Diags(PP.getDiagnostics()),
- TemplateParameterDepth(0), GreaterThanIsOperator(true) {
+ GreaterThanIsOperator(true), TemplateParameterDepth(0) {
Tok.setKind(tok::eof);
CurScope = 0;
NumCachedScopes = 0;