diff options
| author | Aaron Ballman <aaron@aaronballman.com> | 2015-04-10 13:05:04 +0000 |
|---|---|---|
| committer | Aaron Ballman <aaron@aaronballman.com> | 2015-04-10 13:05:04 +0000 |
| commit | fe47a98c18f1211659ad1c8e78503823e462ab08 (patch) | |
| tree | 9a6559afbb89a717dcc4af849a12c5dacc707a06 /clang | |
| parent | 47de1495656b67780461da7858dd7e90a961f79c (diff) | |
| download | bcm5719-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.h | 6 |
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; } |

