MCPcopy Create free account
hub / github.com/boostorg/beast / construct

Method construct

example/http/server/fast/fields_alloc.hpp:169–174  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

167#if defined(BOOST_LIBSTDCXX_VERSION) && BOOST_LIBSTDCXX_VERSION < 60000
168 template<class U, class... Args>
169 void
170 construct(U* ptr, Args&&... args)
171 {
172 ::new(static_cast<void*>(ptr)) U(
173 std::forward<Args>(args)...);
174 }
175
176 template<class U>
177 void

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected