* @brief Destroys objects and releases the memory. */
| 93 | * @brief Destroys objects and releases the memory. |
| 94 | */ |
| 95 | ~stack_allocated() noexcept { |
| 96 | std::ranges::destroy(m_span); |
| 97 | auto *stack = impl::tls::stack(); |
| 98 | stack->deallocate(m_span.data()); |
| 99 | m_frame->reset_stacklet(stack->top()); |
| 100 | } |
| 101 | |
| 102 | private: |
| 103 | impl::frame *m_frame; |
nothing calls this directly
no test coverage detected