r191462 - Remove an unused variable - thanks to Nick Lewycky for pointing this out!

Faisal Vali faisalv at yahoo.com
Thu Sep 26 14:32:23 PDT 2013


Author: faisalv
Date: Thu Sep 26 16:32:23 2013
New Revision: 191462

URL: http://llvm.org/viewvc/llvm-project?rev=191462&view=rev
Log:
Remove an unused variable - thanks to Nick Lewycky for pointing this out!

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

Modified: cfe/trunk/lib/Parse/ParseExprCXX.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Parse/ParseExprCXX.cpp?rev=191462&r1=191461&r2=191462&view=diff
==============================================================================
--- cfe/trunk/lib/Parse/ParseExprCXX.cpp (original)
+++ cfe/trunk/lib/Parse/ParseExprCXX.cpp Thu Sep 26 16:32:23 2013
@@ -938,7 +938,6 @@ ExprResult Parser::ParseLambdaExpression
 
     
     if (Tok.isNot(tok::r_paren)) {
-      sema::LambdaScopeInfo *LSI = Actions.getCurLambda(); 
       Actions.RecordParsingTemplateParameterDepth(TemplateParameterDepth);
       ParseParameterDeclarationClause(D, Attr, ParamInfo, EllipsisLoc);
       // For a generic lambda, each 'auto' within the parameter declaration 





More information about the cfe-commits mailing list