use ObjectMap instead of MapObject.

This commit is contained in:
HuYingzhuo(hugo/hyzboy) 2023-02-13 11:47:53 +08:00
parent 1cfb3d7c3a
commit b0ca13cfb3

View File

@ -151,7 +151,7 @@ namespace hgl
inline Hash *CreateHash(HASH ha)
{
ENUM_CLASS_RANGE_ERROR_RETURN_NULLPTR(ha)
RANGE_CHECK_RETURN_NULLPTR(ha)
using CreateHashFunc=Hash *(*)();
@ -204,7 +204,7 @@ namespace hgl
*/
inline bool CountHash(const void *data,int size,HASH ha,void *hash_code)
{
ENUM_CLASS_RANGE_ERROR_RETURN_FALSE(ha)
RANGE_CHECK_RETURN_FALSE(ha)
if(!data||size<=0||!hash_code)return(false);
using CountHashFunc=bool (*)(const void *,int size,void *);
@ -271,7 +271,7 @@ namespace hgl
*/
inline bool CountHash(const void *data,int size,HASH ha,UTF8String &hash_str,bool litter=true)
{
ENUM_CLASS_RANGE_ERROR_RETURN_FALSE(ha)
RANGE_CHECK_RETURN_FALSE(ha)
if(!data||size<=0)return(false);
using CountHashFunc=bool (*)(const void *,int size,UTF8String &,bool);