| 192 | } |
| 193 | |
| 194 | absl::StatusOr<std::unique_ptr<ListStorage>> RegisterLists( |
| 195 | bool overlap, int len, bool use_modern, google::protobuf::Arena* absl_nonnull arena, |
| 196 | Activation& activation) { |
| 197 | if (use_modern) { |
| 198 | return RegisterModernLists(overlap, len, arena, activation); |
| 199 | } else { |
| 200 | return RegisterLegacyLists(overlap, len, activation); |
| 201 | } |
| 202 | } |
| 203 | |
| 204 | void RunBenchmark(const TestCase& test_case, benchmark::State& state) { |
| 205 | bool lists_overlap = test_case.result.BoolOrDie(); |
nothing calls this directly
no test coverage detected