Skip to content

Commit df5952f

Browse files
committed
Use marker fn for subactions SmallVector
Signed-off-by: Anna Rift <[email protected]>
1 parent 9aa0ff6 commit df5952f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

frontend/include/chpl/resolution/resolution-types.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2641,9 +2641,7 @@ class AssociatedAction {
26412641
id_.mark(context);
26422642
type_.mark(context);
26432643
chpl::mark<decltype(tupleEltIdx_)>{}(context, tupleEltIdx_);
2644-
for (const auto& subAction : subActions_) {
2645-
subAction->mark(context);
2646-
}
2644+
chpl::mark<ActionsList>{}(context, subActions_);
26472645
}
26482646

26492647
void stringify(std::ostream& ss, chpl::StringifyKind stringKind) const;

0 commit comments

Comments
 (0)