[clang] [Clang][P1061] Add stuctured binding packs (PR #121417)

Jason Rice via cfe-commits cfe-commits at lists.llvm.org
Fri Jan 3 13:27:16 PST 2025


================
@@ -15991,6 +15991,13 @@ TreeTransform<Derived>::TransformFunctionParmPackExpr(FunctionParmPackExpr *E) {
   return E;
 }
 
+template <typename Derived>
+ExprResult TreeTransform<Derived>::TransformResolvedUnexpandedPackExpr(
+    ResolvedUnexpandedPackExpr *E) {
+  // Default behavior is to do nothing with this transformation.
----------------
ricejasonf wrote:

I was about to do this, but I see I followed the convention of the other ParmPackExpr kinds above it. Are you sure you want me to move template instantiation stuff into TreeTransform?

https://github.com/llvm/llvm-project/pull/121417


More information about the cfe-commits mailing list