mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-9880 do not define a virtual destructor inline
X-SVN-Rev: 33342
This commit is contained in:
parent
9877db62ec
commit
d511789345
1 changed files with 10 additions and 6 deletions
|
@ -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_;
|
||||
|
|
Loading…
Add table
Reference in a new issue