diff options
Diffstat (limited to 'ext/intl/breakiterator/codepointiterator_internal.cpp')
-rw-r--r-- | ext/intl/breakiterator/codepointiterator_internal.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/intl/breakiterator/codepointiterator_internal.cpp b/ext/intl/breakiterator/codepointiterator_internal.cpp index 8994646bd1..bf44678efc 100644 --- a/ext/intl/breakiterator/codepointiterator_internal.cpp +++ b/ext/intl/breakiterator/codepointiterator_internal.cpp @@ -35,7 +35,7 @@ using namespace PHP; using icu::UCharCharacterIterator; -UOBJECT_DEFINE_RTTI_IMPLEMENTATION(CodePointBreakIterator); +UOBJECT_DEFINE_RTTI_IMPLEMENTATION(CodePointBreakIterator) CodePointBreakIterator::CodePointBreakIterator() : BreakIterator(), fCharIter(NULL), lastCodePoint(U_SENTINEL) @@ -53,7 +53,6 @@ CodePointBreakIterator::CodePointBreakIterator(const PHP::CodePointBreakIterator CodePointBreakIterator& CodePointBreakIterator::operator=(const CodePointBreakIterator& that) { UErrorCode uec = UErrorCode(); - UText *ut_clone = NULL; if (this == &that) { return *this; |