| 211 | } |
| 212 | |
| 213 | static void ParseCSVVehiclesExample( |
| 214 | benchmark::State& state) { // NOLINT non-const reference |
| 215 | auto options = ParseOptions::Defaults(); |
| 216 | options.quoting = true; |
| 217 | options.escaping = false; |
| 218 | |
| 219 | BenchmarkCSVParsing(state, vehicles_example, options); |
| 220 | } |
| 221 | |
| 222 | static void ParseCSVStocksExample( |
| 223 | benchmark::State& state) { // NOLINT non-const reference |
nothing calls this directly
no test coverage detected