MCPcopy Create free account
hub / github.com/LUX-Core/lux / create_node

Method create_node

src/config/implementation.hpp:1607–1617  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1605}
1606
1607template <typename Alloc> void node_constructor<Alloc>::create_node()
1608{
1609 BOOST_ASSERT(!node_);
1610 node_constructed_ = false;
1611
1612 node_ = node_allocator_traits::allocate(alloc_, 1);
1613
1614 new ((void*)boost::addressof(*node_)) node();
1615 node_->init(node_);
1616 node_constructed_ = true;
1617}
1618
1619template <typename NodeAlloc> struct node_tmp
1620{

Callers 8

construct_node_from_argsFunction · 0.80
construct_nodeFunction · 0.80
construct_node_pairFunction · 0.80
copy_ofMethod · 0.80
move_copy_ofMethod · 0.80
create_bucketsMethod · 0.80
insert_range_implFunction · 0.80

Calls 1

initMethod · 0.45

Tested by

no test coverage detected