35 #ifndef _BLAZE_UTIL_POLICIES_DEFAULTDELETE_H_ 36 #define _BLAZE_UTIL_POLICIES_DEFAULTDELETE_H_ 43 #include <boost/checked_delete.hpp> 74 template<
typename Type >
98 template<
typename Type >
101 boost::checked_delete( ptr );
122 template<
typename Type >
148 template<
typename Type >
151 boost::checked_array_delete( ptr );
Default C++ deletion policy class.The DefaultDelete deletion policy is the standard delete for resour...
Definition: DefaultDelete.h:75
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
void operator()(Type *ptr) const
Implementation of the default delete policy.
Definition: DefaultDelete.h:99