| 31 | |
| 32 | template<typename R, class FuncTy> |
| 33 | void parallelSort(R &&Range, FuncTy Fn) { |
| 34 | llvm::parallelSort(std::begin(Range), std::end(Range), Fn); |
| 35 | } |
| 36 | |
| 37 | PdbCreator::PdbCreator(PE::PeFile &pefile, bool withLabels) : _pefile(pefile), _withLabels(withLabels), |
| 38 | _pdbBuilder(_allocator) { |
no test coverage detected