| 303 | } |
| 304 | |
| 305 | void cmGeneratorTarget::GetCompileFeatures(std::vector<std::string>& result, |
| 306 | std::string const& config) const |
| 307 | { |
| 308 | std::vector<BT<std::string>> tmp = this->GetCompileFeatures(config); |
| 309 | result.reserve(tmp.size()); |
| 310 | for (BT<std::string>& v : tmp) { |
| 311 | result.emplace_back(std::move(v.Value)); |
| 312 | } |
| 313 | } |
| 314 | |
| 315 | std::vector<BT<std::string>> cmGeneratorTarget::GetCompileFeatures( |
| 316 | std::string const& config) const |
no test coverage detected