summaryrefslogtreecommitdiffstats
path: root/clang
diff options
context:
space:
mode:
authorAaron Ballman <aaron@aaronballman.com>2015-04-10 13:05:04 +0000
committerAaron Ballman <aaron@aaronballman.com>2015-04-10 13:05:04 +0000
commitfe47a98c18f1211659ad1c8e78503823e462ab08 (patch)
tree9a6559afbb89a717dcc4af849a12c5dacc707a06 /clang
parent47de1495656b67780461da7858dd7e90a961f79c (diff)
downloadbcm5719-llvm-fe47a98c18f1211659ad1c8e78503823e462ab08.tar.gz
bcm5719-llvm-fe47a98c18f1211659ad1c8e78503823e462ab08.zip
Initializing an uninitialized data member; should be NFC.
llvm-svn: 234591
Diffstat (limited to 'clang')
-rw-r--r--clang/include/clang/Sema/ScopeInfo.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/include/clang/Sema/ScopeInfo.h b/clang/include/clang/Sema/ScopeInfo.h
index ec8e56be874..caac651b03d 100644
--- a/clang/include/clang/Sema/ScopeInfo.h
+++ b/clang/include/clang/Sema/ScopeInfo.h
@@ -698,9 +698,9 @@ public:
LambdaScopeInfo(DiagnosticsEngine &Diag)
: CapturingScopeInfo(Diag, ImpCap_None), Lambda(nullptr),
CallOperator(nullptr), NumExplicitCaptures(0), Mutable(false),
- ExprNeedsCleanups(false), ContainsUnexpandedParameterPack(false),
- AutoTemplateParameterDepth(0), GLTemplateParameterList(nullptr)
- {
+ ExplicitParams(false), ExprNeedsCleanups(false),
+ ContainsUnexpandedParameterPack(false), AutoTemplateParameterDepth(0),
+ GLTemplateParameterList(nullptr) {
Kind = SK_Lambda;
}
OpenPOWER on IntegriCloud