]> git.saurik.com Git - apple/icu.git/blame - icuSources/common/uhash_us.cpp
ICU-57163.0.1.tar.gz
[apple/icu.git] / icuSources / common / uhash_us.cpp
CommitLineData
b75a7d8f
A
1/*
2******************************************************************************
4388f060 3* Copyright (C) 1997-2011, International Business Machines
b75a7d8f
A
4* Corporation and others. All Rights Reserved.
5******************************************************************************
6* Date Name Description
7* 03/22/00 aliu Creation.
8* 07/06/01 aliu Modified to support int32_t keys on
9* platforms with sizeof(void*) < 32.
10******************************************************************************
11*/
12
b75a7d8f 13#include "hash.h"
b75a7d8f 14
b75a7d8f
A
15/**
16 * Deleter for Hashtable objects.
17 */
18U_CAPI void U_EXPORT2
19uhash_deleteHashtable(void *obj) {
20 U_NAMESPACE_USE
21 delete (Hashtable*) obj;
22}
23
b75a7d8f 24//eof