| 911 | } |
| 912 | |
| 913 | void Sorter::Run::CleanupRuns(deque<Sorter::Run*>* runs) { |
| 914 | for (Run* run : *runs) { |
| 915 | run->CloseAllPages(); |
| 916 | } |
| 917 | runs->clear(); |
| 918 | } |
| 919 | |
| 920 | int Sorter::Run::NumOpenPages(const vector<Sorter::Page>& pages) { |
| 921 | int count = 0; |
nothing calls this directly
no test coverage detected