mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Fix compiler warnings in ext/intl
I don't really get why these didn't show up before.
This commit is contained in:
parent
d5ee081cfd
commit
410bdaba3f
4 changed files with 7 additions and 7 deletions
|
@ -36,14 +36,14 @@ using icu::UCharCharacterIterator;
|
|||
UOBJECT_DEFINE_RTTI_IMPLEMENTATION(CodePointBreakIterator)
|
||||
|
||||
CodePointBreakIterator::CodePointBreakIterator()
|
||||
: BreakIterator(), fCharIter(NULL), lastCodePoint(U_SENTINEL)
|
||||
: BreakIterator(), lastCodePoint(U_SENTINEL), fCharIter(NULL)
|
||||
{
|
||||
UErrorCode uec = UErrorCode();
|
||||
this->fText = utext_openUChars(NULL, NULL, 0, &uec);
|
||||
}
|
||||
|
||||
CodePointBreakIterator::CodePointBreakIterator(const PHP::CodePointBreakIterator &other)
|
||||
: BreakIterator(other), fText(NULL), fCharIter(NULL), lastCodePoint(U_SENTINEL)
|
||||
: BreakIterator(other), fText(NULL), lastCodePoint(U_SENTINEL), fCharIter(NULL)
|
||||
{
|
||||
*this = other;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue