| 12 | } |
| 13 | |
| 14 | bool CommandLineTargetOptions::HasOption(std::string_view name) { |
| 15 | auto it = _args.find(name); |
| 16 | if (it == _args.end()) { |
| 17 | return false; |
| 18 | } |
| 19 | |
| 20 | return it->second.HasOption; |
| 21 | } |
| 22 | |
| 23 | CommandLine::CommandLine() |
| 24 | : _options(nullptr) { |
no test coverage detected