mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-21 12:40:02 +00:00
ICU-1076 Fix the copy constructor.
X-SVN-Rev: 6137
This commit is contained in:
parent
3dda41c0cc
commit
a23f11ccaa
1 changed files with 3 additions and 2 deletions
|
@ -21,10 +21,11 @@ Quantifier::Quantifier(UnicodeMatcher *adopted,
|
|||
}
|
||||
|
||||
Quantifier::Quantifier(const Quantifier& o) :
|
||||
UnicodeMatcher(o),
|
||||
matcher(o.matcher->clone()),
|
||||
minCount(o.minCount),
|
||||
maxCount(o.maxCount) {
|
||||
delete matcher;
|
||||
maxCount(o.maxCount)
|
||||
{
|
||||
}
|
||||
|
||||
Quantifier::~Quantifier() {
|
||||
|
|
Loading…
Add table
Reference in a new issue