ICU-1029 make UVector compare and delete fn pts compatible with uhash

X-SVN-Rev: 5170
This commit is contained in:
Alan Liu 2001-07-03 23:09:03 +00:00
parent 2c32faf09b
commit c3f4cfbc85

View File

@ -66,8 +66,8 @@
*/
class U_COMMON_API UVector {
public:
typedef void (*Deleter)(void*);
typedef UBool (*Comparer)(void*, void*);
typedef void (* U_CALLCONV Deleter)(void*);
typedef UBool (* U_CALLCONV Comparer)(const void*, const void*);
private:
int32_t count;