| 365 | } |
| 366 | |
| 367 | const CompatListValue* absl_nonnull ListValueBuilderImpl::BuildCompat() && { |
| 368 | if (elements_->empty()) { |
| 369 | return EmptyCompatListValue(); |
| 370 | } |
| 371 | return std::move(*this).BuildCompatAt(arena_->AllocateAligned( |
| 372 | sizeof(CompatListValueImpl), alignof(CompatListValueImpl))); |
| 373 | } |
| 374 | |
| 375 | const CompatListValue* absl_nonnull ListValueBuilderImpl::BuildCompatAt( |
| 376 | void* absl_nonnull address) && { |
no test coverage detected