Constructors
Declared in <folly/tracing/AsyncStack.h>
Constructs an empty stack root with no active frame.
constexpr
AsyncStackRoot() = default;
» more...
Deleted copy constructor; stack roots are not copyable.
AsyncStackRoot(AsyncStackRoot const& other) = delete;
» more...
Deleted move constructor; stack roots are not movable.
AsyncStackRoot(AsyncStackRoot&& other) = delete;
» more...
| Name | Description |
|---|---|
| other | The stack root that would be copied. |