commit | 0d8f3d6c452883ab7295573c4ff7437d68d1d936 | [log] [tgz] |
---|---|---|
author | Alex Ray <aray@google.com> | Wed Jul 17 16:57:21 2013 -0700 |
committer | Alex Ray <aray@google.com> | Tue Jul 30 13:57:01 2013 -0700 |
tree | ffda5b41146be61a9b455345c54334bb4d652079 | |
parent | 946003ae6472ab4661c10d11c2b6ded42fe701ca [diff] [blame] |
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);