================
@@ -831,7 +831,7 @@ class PackDeductionScope {
     if (IsPartiallyExpanded)
       PackElements += NumPartialPackArgs;
     else if (IsExpanded)
-      PackElements += *FixedNumExpansions;
+      PackElements += FixedNumExpansions.value_or(1);
----------------
Sirraide wrote:

This seems fine as a fix, though ideally, it would be good to know what’s 
causing this so it’s easier to figure out what’s going wrong; my assumption is 
that we do something to the pack that causes `IsExpanded` to be true here but 
which wouldn’t have been true at the time `FixedNumExpansions` was (not) set.

https://github.com/llvm/llvm-project/pull/88637
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to