| 445 | } |
| 446 | |
| 447 | bool MemoryPool::aborted() const { |
| 448 | if (parent_ != nullptr) { |
| 449 | return parent_->aborted(); |
| 450 | } |
| 451 | return aborted_; |
| 452 | } |
| 453 | |
| 454 | std::exception_ptr MemoryPool::abortError() const { |
| 455 | if (parent_ != nullptr) { |
no outgoing calls