* @brief Get allocator handle * * @return allocator::AllocatorRef */
| 70 | * @return allocator::AllocatorRef |
| 71 | */ |
| 72 | allocator::AllocatorRef GetAllocator() const { |
| 73 | AIMRT_ASSERT(base_ptr_, "Reference is null."); |
| 74 | return allocator::AllocatorRef(base_ptr_->allocator_handle(base_ptr_->impl)); |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * @brief Get executor manager handle |
nothing calls this directly
no test coverage detected