libstdc++: std::default_delete< _Tp > Struct Template Reference (original) (raw)
#include <[memory](a00140%5Fsource.html)>
Public Member Functions | |
---|---|
constexpr | default_delete () noexcept=default |
template<typename _Up , typename = _Require<is_convertible<_Up*, _Tp*>>> | |
constexpr | default_delete (const default_delete< _Up > &) noexcept |
constexpr void | operator() (_Tp *__ptr) const |
Detailed Description
template<typename _Tp>
struct std::default_delete< _Tp >
Primary template of default_delete, used by unique_ptr for single objects
Since
C++11
Definition at line 69 of file unique_ptr.h.
Constructor & Destructor Documentation
◆ default_delete() [2/2]
template<typename _Tp >
template<typename _Up , typename = _Require<is_convertible<_Up*, _Tp*>>>
Converting constructor.
Allows conversion from a deleter for objects of another type, _Up
, only if _Up*
is convertible to _Tp*
.
Definition at line 82 of file unique_ptr.h.
Member Function Documentation
◆ operator()()
The documentation for this struct was generated from the following file: