| 709 | } |
| 710 | |
| 711 | void cmGeneratorTarget::GetLinkDepends(std::vector<std::string>& result, |
| 712 | std::string const& config, |
| 713 | std::string const& language) const |
| 714 | { |
| 715 | std::vector<BT<std::string>> tmp = this->GetLinkDepends(config, language); |
| 716 | result.reserve(tmp.size()); |
| 717 | for (BT<std::string>& v : tmp) { |
| 718 | result.emplace_back(std::move(v.Value)); |
| 719 | } |
| 720 | } |
| 721 | |
| 722 | std::vector<BT<std::string>> cmGeneratorTarget::GetLinkDepends( |
| 723 | std::string const& config, std::string const& language) const |
no test coverage detected