| 1415 | } |
| 1416 | |
| 1417 | void Target::ProcessLanguages() |
| 1418 | { |
| 1419 | std::set<std::string> languages; |
| 1420 | this->GT->GetLanguages(languages, this->Config); |
| 1421 | for (std::string const& lang : languages) { |
| 1422 | this->ProcessLanguage(lang); |
| 1423 | } |
| 1424 | } |
| 1425 | |
| 1426 | void Target::ProcessLanguage(std::string const& lang) |
| 1427 | { |
no test coverage detected