delete hgl_cpy(T *,T *) function.

This commit is contained in:
2022-03-11 17:58:08 +08:00
parent afec00dc90
commit f305b89cd3

View File

@@ -331,15 +331,6 @@ namespace hgl
memcpy(&dst,&src,sizeof(T));
}
/**
* 同类型指针数据复制
*/
template<typename T>
inline void hgl_cpy(T *dst,const T *src)
{
memcpy(dst,src,sizeof(T));
}
/**
* 数据类型转换赋值
*/