ICU-4092 Increase code coverage by removing the operator= implementation.

The implementation doesn't need to exist. It just needs to be declared private.

X-SVN-Rev: 17067
This commit is contained in:
George Rhoten 2005-01-01 03:00:49 +00:00
parent 394d5e102b
commit 8dae6168aa

View File

@ -615,7 +615,7 @@ private:
* The assignment operator has no real implementation.
* It's provided to make the compiler happy. Do not call.
*/
BreakIterator& operator=(const BreakIterator&) { return *this; }
BreakIterator& operator=(const BreakIterator&);
};
inline UBool BreakIterator::isBufferClone()