Bootstrap from string initializer list
| 133 | |
| 134 | // Bootstrap from string initializer list |
| 135 | bootstrap(std::initializer_list<std::string> l) : context(create_context({l.begin(), l.end()})) {} |
| 136 | |
| 137 | // Classic bootstrap from command line |
| 138 | bootstrap(int argc, char *argv[]) : context(create_context(parse_cmd_args(argc, argv))) {} |
nothing calls this directly
no test coverage detected