| 12996 | |
| 12997 | template<typename CharT> |
| 12998 | int run(int argc, CharT const * const argv[]) { |
| 12999 | if (m_startupExceptions) |
| 13000 | return 1; |
| 13001 | int returnCode = applyCommandLine(argc, argv); |
| 13002 | if (returnCode == 0) |
| 13003 | returnCode = run(); |
| 13004 | return returnCode; |
| 13005 | } |
| 13006 | |
| 13007 | int run(); |
| 13008 |
nothing calls this directly
no outgoing calls
no test coverage detected