File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -4549,6 +4549,10 @@ class PackIndexingExpr final
45494549
45504550 bool isFullySubstituted () const { return FullySubstituted; }
45514551
4552+ bool isPartiallySubstituted () const {
4553+ return isValueDependent () && TransformedExpressions;
4554+ };
4555+
45524556 // / Determine if the expression was expanded to empty.
45534557 bool expandsToEmptyPack () const {
45544558 return isFullySubstituted () && TransformedExpressions == 0 ;
@@ -4592,10 +4596,6 @@ class PackIndexingExpr final
45924596 return {getTrailingObjects<Expr *>(), TransformedExpressions};
45934597 }
45944598
4595- bool isPartiallySubstituted () const {
4596- return isValueDependent () && TransformedExpressions;
4597- };
4598-
45994599 static bool classof (const Stmt *T) {
46004600 return T->getStmtClass () == PackIndexingExprClass;
46014601 }
You can’t perform that action at this time.
0 commit comments