| 133 | } |
| 134 | |
| 135 | void SortInfos(std::vector<FileInfo>* infos) { |
| 136 | std::sort(infos->begin(), infos->end(), FileInfo::ByPath{}); |
| 137 | } |
| 138 | |
| 139 | std::vector<FileInfo> SortedInfos(const std::vector<FileInfo>& infos) { |
| 140 | auto sorted = infos; |
no test coverage detected