| 67 | } |
| 68 | |
| 69 | unsigned Splitter_Impl::branchIndexForOutletModelObject(ModelObject modelObject) const { |
| 70 | int stop = nextBranchIndex(); |
| 71 | for (int i = 0; i < stop; i++) { |
| 72 | if (outletModelObject(i) == modelObject) { |
| 73 | return i; |
| 74 | } |
| 75 | } |
| 76 | return 0; |
| 77 | } |
| 78 | |
| 79 | unsigned Splitter_Impl::nextBranchIndex() const { |
| 80 | unsigned i = 0; |
no outgoing calls
no test coverage detected