commit | 194bc4ff7bf90af14771a3a7074c197a871e0127 | [log] [tgz] |
---|---|---|
author | Alex Ray <aray@google.com> | Wed Jul 17 16:57:21 2013 -0700 |
committer | Alex Ray <aray@google.com> | Wed Jul 24 00:21:57 2013 -0700 |
tree | 7a4deef0b3e1db788a3c3b4e9be9e5eedbbe7a40 | |
parent | 656a6b9e3645bfe2cf073b69cbb9d02832f62c26 [diff] |
libutils: give BasicHashtableImpl a virtual destructor Change-Id: I4ec590b060d732af5fe525670becbe778684247b
diff --git a/libs/utils/BasicHashtable.cpp b/libs/utils/BasicHashtable.cpp index fd51b7b..491d9e9 100644 --- a/libs/utils/BasicHashtable.cpp +++ b/libs/utils/BasicHashtable.cpp
@@ -42,6 +42,10 @@ } } +BasicHashtableImpl::~BasicHashtableImpl() +{ +} + void BasicHashtableImpl::dispose() { if (mBuckets) { releaseBuckets(mBuckets, mBucketCount);