libER 0.1.4.2
ELDEN RING API library
|
Delay deleter that models std::default_delete. More...
#include <from_delay_delete.hpp>
Public Member Functions | |
constexpr | delay_delete () noexcept=default |
Default constructor. | |
template<typename U > requires std::convertible_to<U*, T*> | |
delay_delete (const delay_delete< U > &) noexcept | |
Copy template constructor. | |
void | operator() (T *p) const noexcept |
Request object deletion. | |
Delay deleter that models std::default_delete.
T | type of the target object |
|
inlinenoexcept |
Copy template constructor.
U | type of another target object |
|
inlinenoexcept |
Request object deletion.
Called by std::unique_ptr and other STL implementations of std::default_delete.
p | pointer to object to delete |