| 130 | } |
| 131 | |
| 132 | static void ChunkCSVFlightsExample( |
| 133 | benchmark::State& state) { // NOLINT non-const reference |
| 134 | auto options = ParseOptions::Defaults(); |
| 135 | options.newlines_in_values = true; |
| 136 | |
| 137 | BenchmarkCSVChunking(state, flights_example, options); |
| 138 | } |
| 139 | |
| 140 | static void ChunkCSVVehiclesExample( |
| 141 | benchmark::State& state) { // NOLINT non-const reference |
nothing calls this directly
no test coverage detected