|
5.0.0
Freundlich's C++ toolkit
|
A deleter that uses std::free to destroy an object.
Public Member Functions | |
| template<typename T> | |
| void | operator() (T *const _ptr) const noexcept |
Deletes a pointer using std::free | |
|
inlinenoexcept |
Deletes a pointer using std::free
Calls std::free(_ptr)
| _ptr | The pointer to delete |
| T | Can be any type where T * can be converted to void %* |