ICU-9880 do not define a virtual destructor inline

X-SVN-Rev: 33342
This commit is contained in:
Markus Scherer 2013-02-27 19:50:08 +00:00
parent 9877db62ec
commit d511789345

View file

@ -132,12 +132,9 @@ public:
}
}
virtual ~BucketList() {
delete bucketList_;
if (immutableVisibleList_ != bucketList_) {
delete immutableVisibleList_;
}
}
// The virtual destructor must not be inline.
// See ticket #8454 for details.
virtual ~BucketList();
int32_t getBucketCount() const {
return immutableVisibleList_->size();
@ -172,6 +169,13 @@ public:
UVector *immutableVisibleList_;
};
BucketList::~BucketList() {
delete bucketList_;
if (immutableVisibleList_ != bucketList_) {
delete immutableVisibleList_;
}
}
AlphabeticIndex::ImmutableIndex::~ImmutableIndex() {
delete buckets_;
delete collatorPrimaryOnly_;