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

Function call_construct

src/config/implementation.hpp:1257–1260  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1255
1256template <typename Alloc, typename T, typename... Args>
1257inline void call_construct(Alloc&, T* address, BOOST_FWD_REF(Args)... args)
1258{
1259 new ((void*)address) T(boost::forward<Args>(args)...);
1260}
1261
1262template <typename Alloc, typename T> inline void call_destroy(Alloc&, T* x)
1263{

Callers 7

implementation.hppFile · 0.85
construct_nodeFunction · 0.85
construct_node_pairFunction · 0.85
copy_ofMethod · 0.85
move_copy_ofMethod · 0.85
insert_range_implFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected