21using unique_ptr = std::unique_ptr<T, from::delay_delete<T>>;
32template <
typename T,
typename... Args>
35 using altraits = std::allocator_traits<
decltype(
allocator)>;
39 altraits::construct(
allocator, p, std::forward<Args>(args)...);
45 "ELDEN RING ABI requirement");
The main libER stand-in for ER allocator proxies.
Definition from_allocator.hpp:308
ELDEN RING allocation interface and from::allocator.
Delay deleter implementation.
from::unique_ptr< T > make_unique(Args &&... args)
from::unique_ptr make_unique implementation
Definition from_unique_ptr.hpp:33
std::unique_ptr< T, from::delay_delete< T > > unique_ptr
std::unique_ptr with from::allocator and from::delay_delete.
Definition from_unique_ptr.hpp:21