MCPcopy Create free account
hub / github.com/boostorg/leaf / capturing_node

Class capturing_node

include/boost/leaf/error.hpp:239–251  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

237 friend struct capturing_slot_node_allocator;
238
239 class capturing_node:
240 public capture_list::node
241 {
242 protected:
243 BOOST_LEAF_CONSTEXPR explicit capturing_node( capture_list::node * * & last ) noexcept:
244 node(last)
245 {
246 BOOST_LEAF_ASSERT(last == &next_);
247 BOOST_LEAF_ASSERT(next_ == nullptr);
248 }
249 public:
250 virtual void deactivate() const noexcept = 0;
251 };
252
253 template <class E>
254 class capturing_slot_node final:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected