| 1726 | } |
| 1727 | } |
| 1728 | |
| 1729 | noMatchDetector_.finishIteration( |
| 1730 | addMiss, results_.atEnd(), outputTableRows_.size() - numPassed); |
| 1731 | } else { |
| 1732 | for (auto i = 0; i < numRows; ++i) { |
| 1733 | if (filterPassed(i)) { |
| 1734 | outputTableRows_[numPassed] = outputTableRows_[i]; |
| 1735 | rawOutputProbeRowMapping[numPassed++] = rawOutputProbeRowMapping[i]; |
| 1736 | } |
| 1737 | } |
| 1738 | } |
| 1739 | return numPassed; |
| 1740 | } |
nothing calls this directly
no test coverage detected