| 2 | |
| 3 | namespace gbbs { |
| 4 | commandLine::commandLine(int _c, char** _v, std::string _cl) |
| 5 | : argc(_c), argv(_v), comLine(std::move(_cl)) {} |
| 6 | |
| 7 | commandLine::commandLine(int _c, char** _v) |
| 8 | : argc(_c), argv(_v), comLine("bad arguments") {} |
nothing calls this directly
no outgoing calls
no test coverage detected