| 6 | #include <cstdlib> |
| 7 | |
| 8 | int main(int argc, char** argv) { |
| 9 | try { |
| 10 | return NBench::Main(argc, argv); |
| 11 | } catch (...) { |
| 12 | Cerr << CurrentExceptionMessage() << Endl; |
| 13 | } |
| 14 | |
| 15 | return EXIT_FAILURE; |
| 16 | } |
nothing calls this directly
no test coverage detected