| 20 | namespace benchmark { |
| 21 | |
| 22 | struct BenchmarkOptions { |
| 23 | std::string filter_test; |
| 24 | bool list_only = false; |
| 25 | bool show_help = false; |
| 26 | int omp_threads = 0; |
| 27 | int ff_threads = 0; |
| 28 | }; |
| 29 | |
| 30 | std::string BenchmarkUsage(); |
| 31 | BenchmarkOptions ParseBenchmarkOptions(const std::vector<std::string>& args); |
nothing calls this directly
no outgoing calls
no test coverage detected