[cfe-commits] r79962 - /cfe/trunk/lib/Parse/Parser.cpp

Douglas Gregor dgregor at apple.com
Mon Aug 24 17:17:24 PDT 2009


Author: dgregor
Date: Mon Aug 24 19:17:23 2009
New Revision: 79962

URL: http://llvm.org/viewvc/llvm-project?rev=79962&view=rev
Log:
Eliminate a GCC warning

Modified:
    cfe/trunk/lib/Parse/Parser.cpp

Modified: cfe/trunk/lib/Parse/Parser.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Parse/Parser.cpp?rev=79962&r1=79961&r2=79962&view=diff

==============================================================================
--- cfe/trunk/lib/Parse/Parser.cpp (original)
+++ cfe/trunk/lib/Parse/Parser.cpp Mon Aug 24 19:17:23 2009
@@ -35,7 +35,7 @@
 
 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;





More information about the cfe-commits mailing list