| 1266 | class CommandLineArgs { |
| 1267 | public: |
| 1268 | CommandLineArgs(void) { |
| 1269 | setArgs(0, static_cast<char**>(nullptr)); |
| 1270 | } |
| 1271 | CommandLineArgs(int argc, const char** argv) { |
| 1272 | setArgs(argc, argv); |
| 1273 | } |
nothing calls this directly
no outgoing calls
no test coverage detected