inline void checked_delete(T* x) noexcept
typedef char type_must_be_complete[sizeof(T) ? 1 : -1];
(void) sizeof(type_must_be_complete);
delete x;
template
inline void checked_array_delete(T* x) noexcept
typedef char type_must_be_complete[sizeof(T) ? 1 : -1];
(void) sizeof(type_must_be_complete);
delete []x;
template
struct checked_deleter
typedef void result_type;
typedef T* argument_type;
void operator()(T* x) const noexcept
checked_delete(x);
template
struct checked_array_deleter
typedef void result_type;
typedef T* argument_type;
void operator()(T* x) const noexcept
checked_array_delete(x);
class emptyClass
struct emptyStruct
丑猫吃大鱼:
vtkResliceImageViewer
zhanmin824:
LLNet模型实现——训练数据准备之Matlab图像格式转换
昵称可以编辑:
相机标定序列——Tsai两步标定
long_est: