| 10558 | |
| 10559 | template<typename CharT> |
| 10560 | int run(int argc, CharT const * const argv[]) { |
| 10561 | if (m_startupExceptions) |
| 10562 | return 1; |
| 10563 | int returnCode = applyCommandLine(argc, argv); |
| 10564 | if (returnCode == 0) |
| 10565 | returnCode = run(); |
| 10566 | return returnCode; |
| 10567 | } |
| 10568 | |
| 10569 | int run(); |
| 10570 |
nothing calls this directly
no outgoing calls
no test coverage detected