mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-14 01:11:02 +00:00
ICU-4707 Fix linker warnings for AIX.
X-SVN-Rev: 18380
This commit is contained in:
parent
c7b9319b1c
commit
45ac202ab3
2 changed files with 5 additions and 1 deletions
|
@ -155,6 +155,10 @@ Transliterator::Transliterator(const Transliterator& other) :
|
|||
}
|
||||
}
|
||||
|
||||
Transliterator* Transliterator::clone() const {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/**
|
||||
* Assignment operator.
|
||||
*/
|
||||
|
|
|
@ -373,7 +373,7 @@ public:
|
|||
* @see #registerInstance
|
||||
* @stable ICU 2.0
|
||||
*/
|
||||
virtual Transliterator* clone() const { return 0; }
|
||||
virtual Transliterator* clone() const;
|
||||
|
||||
/**
|
||||
* Transliterates a segment of a string, with optional filtering.
|
||||
|
|
Loading…
Add table
Reference in a new issue