| 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: |
nothing calls this directly
no outgoing calls
no test coverage detected