| 345 | } |
| 346 | |
| 347 | void cmGeneratorTarget::GetCompileDefinitions( |
| 348 | std::vector<std::string>& result, std::string const& config, |
| 349 | std::string const& language) const |
| 350 | { |
| 351 | std::vector<BT<std::string>> tmp = |
| 352 | this->GetCompileDefinitions(config, language); |
| 353 | result.reserve(result.size() + tmp.size()); |
| 354 | for (BT<std::string>& v : tmp) { |
| 355 | result.emplace_back(std::move(v.Value)); |
| 356 | } |
| 357 | } |
| 358 | |
| 359 | std::vector<BT<std::string>> cmGeneratorTarget::GetCompileDefinitions( |
| 360 | std::string const& config, std::string const& language) const |
no test coverage detected