| 373 | } |
| 374 | |
| 375 | const CompatListValue* absl_nonnull ListValueBuilderImpl::BuildCompatAt( |
| 376 | void* absl_nonnull address) && { |
| 377 | CompatListValueImpl* absl_nonnull impl = |
| 378 | ::new (address) CompatListValueImpl(std::move(*elements_)); |
| 379 | if (!elements_trivially_destructible_) { |
| 380 | arena_->OwnDestructor(impl); |
| 381 | elements_trivially_destructible_ = true; |
| 382 | } |
| 383 | return impl; |
| 384 | } |
| 385 | |
| 386 | class MutableCompatListValueImpl final : public MutableCompatListValue { |
| 387 | public: |
no outgoing calls
no test coverage detected