mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-900 Fixed some compiler warnings.
X-SVN-Rev: 6243
This commit is contained in:
parent
2aac7e7bf6
commit
f3a044401b
1 changed files with 3 additions and 3 deletions
|
@ -12,12 +12,12 @@
|
|||
U_NAMESPACE_BEGIN
|
||||
|
||||
Quantifier::Quantifier(UnicodeMatcher *adopted,
|
||||
uint32_t minCount, uint32_t maxCount) {
|
||||
uint32_t _minCount, uint32_t _maxCount) {
|
||||
// assert(adopted != 0);
|
||||
// assert(minCount <= maxCount);
|
||||
matcher = adopted;
|
||||
this->minCount = minCount;
|
||||
this->maxCount = maxCount;
|
||||
this->minCount = _minCount;
|
||||
this->maxCount = _maxCount;
|
||||
}
|
||||
|
||||
Quantifier::Quantifier(const Quantifier& o) :
|
||||
|
|
Loading…
Add table
Reference in a new issue