MCPcopy Create free account
hub / github.com/boostorg/stacktrace / impl_

Function impl_

include/boost/stacktrace/stacktrace.hpp:158–162  ·  view source on GitHub ↗

@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.

Source from the content-addressed store, hash-verified

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 ///

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected