r234591 - Initializing an uninitialized data member; should be NFC.

Aaron Ballman aaron at aaronballman.com
Fri Apr 10 06:05:05 PDT 2015


Author: aaronballman
Date: Fri Apr 10 08:05:04 2015
New Revision: 234591

URL: http://llvm.org/viewvc/llvm-project?rev=234591&view=rev
Log:
Initializing an uninitialized data member; should be NFC.

Modified:
    cfe/trunk/include/clang/Sema/ScopeInfo.h

Modified: cfe/trunk/include/clang/Sema/ScopeInfo.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Sema/ScopeInfo.h?rev=234591&r1=234590&r2=234591&view=diff
==============================================================================
--- cfe/trunk/include/clang/Sema/ScopeInfo.h (original)
+++ cfe/trunk/include/clang/Sema/ScopeInfo.h Fri Apr 10 08:05:04 2015
@@ -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;
   }
 





More information about the cfe-commits mailing list