]>
Commit | Line | Data |
---|---|---|
f3c0d7a5 A |
1 | // © 2016 and later: Unicode, Inc. and others. |
2 | // License & terms of use: http://www.unicode.org/copyright.html | |
b75a7d8f A |
3 | /* |
4 | ****************************************************************************** | |
4388f060 | 5 | * Copyright (C) 1997-2011, International Business Machines |
b75a7d8f A |
6 | * Corporation and others. All Rights Reserved. |
7 | ****************************************************************************** | |
8 | * Date Name Description | |
9 | * 03/22/00 aliu Creation. | |
10 | * 07/06/01 aliu Modified to support int32_t keys on | |
11 | * platforms with sizeof(void*) < 32. | |
12 | ****************************************************************************** | |
13 | */ | |
14 | ||
b75a7d8f | 15 | #include "hash.h" |
b75a7d8f | 16 | |
b75a7d8f A |
17 | /** |
18 | * Deleter for Hashtable objects. | |
19 | */ | |
20 | U_CAPI void U_EXPORT2 | |
21 | uhash_deleteHashtable(void *obj) { | |
22 | U_NAMESPACE_USE | |
23 | delete (Hashtable*) obj; | |
24 | } | |
25 | ||
b75a7d8f | 26 | //eof |