@brief Stores the current function call sequence inside *this without any decoding or any other heavy platform specific operations. @b Complexity: O(N) where N is call sequence length, O(1) if BOOST_STACKTRACE_USE_NOOP is defined. @b Async-Handler-Safety: \asyncsafe if Allocator construction, copying, Allocator::allocate and Allocator::deallocate are async signal safe.
| 156 | /// |
| 157 | /// @b Async-Handler-Safety: \asyncsafe if Allocator construction, copying, Allocator::allocate and Allocator::deallocate are async signal safe. |
| 158 | BOOST_FORCEINLINE basic_stacktrace() noexcept |
| 159 | : impl_() |
| 160 | { |
| 161 | init(0 , static_cast<std::size_t>(-1)); |
| 162 | } |
| 163 | |
| 164 | /// @brief Stores the current function call sequence inside *this without any decoding or any other heavy platform specific operations. |
| 165 | /// |
nothing calls this directly
no outgoing calls
no test coverage detected