added Init() in LifetimeCallback.h

This commit is contained in:
HuYingzhuo(hugo/hyzboy) 2023-08-02 14:47:22 +08:00
parent a9bec5b5d2
commit 1a443fbf88

View File

@ -15,6 +15,11 @@ namespace hgl
{
hgl_cpy(dst,src,count);
}
virtual void Init(T *dst,int count)
{
hgl_zero(dst,count);
}
};
/**