mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-14 17:24:01 +00:00
ICU-535 Fixed some compiler warnings.
X-SVN-Rev: 3038
This commit is contained in:
parent
0ade06ab2b
commit
e0da266893
2 changed files with 3 additions and 3 deletions
|
@ -45,9 +45,9 @@ RuleBasedBreakIterator::fgClassID = 0;
|
|||
* Constructs a RuleBasedBreakIterator that uses the already-created
|
||||
* tables object that is passed in as a parameter.
|
||||
*/
|
||||
RuleBasedBreakIterator::RuleBasedBreakIterator(RuleBasedBreakIteratorTables* tables)
|
||||
RuleBasedBreakIterator::RuleBasedBreakIterator(RuleBasedBreakIteratorTables* adoptTables)
|
||||
: text(NULL),
|
||||
tables(tables)
|
||||
tables(adoptTables)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -456,7 +456,7 @@ private:
|
|||
* Constructs a RuleBasedBreakIterator that uses the already-created
|
||||
* tables object that is passed in as a parameter.
|
||||
*/
|
||||
RuleBasedBreakIterator(RuleBasedBreakIteratorTables* tables);
|
||||
RuleBasedBreakIterator(RuleBasedBreakIteratorTables* adoptTables);
|
||||
|
||||
friend class BreakIterator;
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue