forked from OSchip/llvm-project
Silencing a spurious -Wuninitialized warning with this local; NFC.
llvm-svn: 235981
This commit is contained in:
parent
26607f799a
commit
d1c6916327
|
@ -1482,7 +1482,7 @@ ExprResult Sema::BuildLambdaExpr(SourceLocation StartLoc, SourceLocation EndLoc,
|
|||
// Collect information from the lambda scope.
|
||||
SmallVector<LambdaCapture, 4> Captures;
|
||||
SmallVector<Expr *, 4> CaptureInits;
|
||||
LambdaCaptureDefault CaptureDefault;
|
||||
LambdaCaptureDefault CaptureDefault = LCD_None;
|
||||
SourceLocation CaptureDefaultLoc;
|
||||
CXXRecordDecl *Class;
|
||||
CXXMethodDecl *CallOperator;
|
||||
|
|
Loading…
Reference in New Issue