| 505 | } |
| 506 | |
| 507 | static void FieldPathGetFromWideArrayData( |
| 508 | benchmark::State& state) { // NOLINT non-const reference |
| 509 | constexpr int kNumColumns = 10000; |
| 510 | auto array = GenerateTestArray(kNumColumns); |
| 511 | BenchmarkFieldPathGet(state, *array->data(), kNumColumns); |
| 512 | } |
| 513 | |
| 514 | static void FieldPathGetFromWideBatch( |
| 515 | benchmark::State& state) { // NOLINT non-const reference |
nothing calls this directly
no test coverage detected