================
@@ -914,6 +914,12 @@ Sema::ActOnDecompositionDeclarator(Scope *S, Declarator &D,
 
     auto *BD = BindingDecl::Create(Context, DC, B.NameLoc, B.Name, QT);
 
+    if (BD->isParameterPack()) {
+      if (auto *CSI = getEnclosingLambdaOrBlock()) {
+        CSI->LocalPacks.push_back(BD);
+      }
+    }
----------------
babadany2999 wrote:

Thanks! I did read the coding standards but I code a bit differently so it 
slipped!

https://github.com/llvm/llvm-project/pull/214716
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to