ICU-4707 Fix linker warnings for AIX.

X-SVN-Rev: 18380
This commit is contained in:
George Rhoten 2005-08-02 18:08:17 +00:00
parent c7b9319b1c
commit 45ac202ab3
2 changed files with 5 additions and 1 deletions

View file

@ -155,6 +155,10 @@ Transliterator::Transliterator(const Transliterator& other) :
}
}
Transliterator* Transliterator::clone() const {
return NULL;
}
/**
* Assignment operator.
*/

View file

@ -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.