michael@0: /* michael@0: ****************************************************************************** michael@0: * Copyright (C) 1997-2011, International Business Machines michael@0: * Corporation and others. All Rights Reserved. michael@0: ****************************************************************************** michael@0: * Date Name Description michael@0: * 03/22/00 aliu Creation. michael@0: * 07/06/01 aliu Modified to support int32_t keys on michael@0: * platforms with sizeof(void*) < 32. michael@0: ****************************************************************************** michael@0: */ michael@0: michael@0: #include "hash.h" michael@0: michael@0: /** michael@0: * Deleter for Hashtable objects. michael@0: */ michael@0: U_CAPI void U_EXPORT2 michael@0: uhash_deleteHashtable(void *obj) { michael@0: U_NAMESPACE_USE michael@0: delete (Hashtable*) obj; michael@0: } michael@0: michael@0: //eof