diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-08-25 00:17:23 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-08-25 00:17:23 +0000 |
commit | b13bc41a8b0e2d8b7f7d824d5836ce5ae0b8ae5f (patch) | |
tree | 8414723b6c7e5401934483a51b2e8204168a2420 /lib/Parse/Parser.cpp | |
parent | e666b1b1fbe17ce6cc8d417690c61cd05f5b0002 (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.cpp | 2 |
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; |