| 405 | /**************************************************************************************************/ |
| 406 | |
| 407 | CommonOptionsParser MakeOptionsParser(int argc, const char** argv) { |
| 408 | auto MaybeOptionsParser = CommonOptionsParser::create(argc, argv, MyToolCategory); |
| 409 | if (!MaybeOptionsParser) { |
| 410 | throw MaybeOptionsParser.takeError(); |
| 411 | } |
| 412 | return std::move(*MaybeOptionsParser); |
| 413 | } |
| 414 | |
| 415 | /**************************************************************************************************/ |
| 416 | // Hyde may accumulate many "fixups" throughout its lifetime. The first of these so far is to move |
no outgoing calls
no test coverage detected