| 530 | } |
| 531 | |
| 532 | std::string cmStandardLevelResolver::GetEffectiveStandard( |
| 533 | cmGeneratorTarget const* target, std::string const& lang, |
| 534 | std::string const& config) const |
| 535 | { |
| 536 | auto const& mapping = StandardComputerMapping.find(lang); |
| 537 | if (mapping == cm::cend(StandardComputerMapping)) { |
| 538 | return std::string{}; |
| 539 | } |
| 540 | |
| 541 | return mapping->second.GetEffectiveStandard(this->Makefile, target, config); |
| 542 | } |
| 543 | |
| 544 | std::string cmStandardLevelResolver::GetLevelString( |
| 545 | std::string const& lang, cmStandardLevel level) const |
no test coverage detected