intl/icu/source/common/uhash_us.cpp

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/intl/icu/source/common/uhash_us.cpp	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,24 @@
     1.4 +/*
     1.5 +******************************************************************************
     1.6 +*   Copyright (C) 1997-2011, International Business Machines
     1.7 +*   Corporation and others.  All Rights Reserved.
     1.8 +******************************************************************************
     1.9 +*   Date        Name        Description
    1.10 +*   03/22/00    aliu        Creation.
    1.11 +*   07/06/01    aliu        Modified to support int32_t keys on
    1.12 +*                           platforms with sizeof(void*) < 32.
    1.13 +******************************************************************************
    1.14 +*/
    1.15 +
    1.16 +#include "hash.h"
    1.17 +
    1.18 +/**
    1.19 + * Deleter for Hashtable objects.
    1.20 + */
    1.21 +U_CAPI void U_EXPORT2
    1.22 +uhash_deleteHashtable(void *obj) {
    1.23 +    U_NAMESPACE_USE
    1.24 +    delete (Hashtable*) obj;
    1.25 +}
    1.26 +
    1.27 +//eof

mercurial