| 312 | } |
| 313 | |
| 314 | std::vector<std::string> cmCustomCommandGenerator::GetCrossCompilingEmulator( |
| 315 | unsigned int c) const |
| 316 | { |
| 317 | if (c >= this->EmulatorsWithArguments.size()) { |
| 318 | return std::vector<std::string>(); |
| 319 | } |
| 320 | return this->EmulatorsWithArguments[c]; |
| 321 | } |
| 322 | |
| 323 | char const* cmCustomCommandGenerator::GetArgv0Location(unsigned int c) const |
| 324 | { |
no test coverage detected