summaryrefslogtreecommitdiff
path: root/ext/intl/breakiterator/codepointiterator_internal.cpp
diff options
context:
space:
mode:
authorGabriel Caruso <carusogabriel34@gmail.com>2018-07-25 22:05:41 -0300
committerGabriel Caruso <carusogabriel34@gmail.com>2018-07-25 22:05:41 -0300
commitfb966b982585541d70489df5fa0e4873a1b91503 (patch)
tree701e433ca2f782eebec9500c44d50b9a2f02f235 /ext/intl/breakiterator/codepointiterator_internal.cpp
parent9e4d590b1982cf38f23948dff1beffd06fd9e0d3 (diff)
downloadphp-git-fb966b982585541d70489df5fa0e4873a1b91503.tar.gz
Remove unused variables
Diffstat (limited to 'ext/intl/breakiterator/codepointiterator_internal.cpp')
-rw-r--r--ext/intl/breakiterator/codepointiterator_internal.cpp3
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;