| 759 | } |
| 760 | |
| 761 | static void updateIndicesHelper(std::deque<std::shared_ptr<MacroSegment>> &list) |
| 762 | { |
| 763 | int idx = 0; |
| 764 | for (auto segment : list) { |
| 765 | segment->SetIndex(idx); |
| 766 | idx++; |
| 767 | } |
| 768 | } |
| 769 | |
| 770 | void Macro::UpdateActionIndices() |
| 771 | { |
no outgoing calls
no test coverage detected