php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | |
Patch icu70patch for intl Bug #81572Patch version 2021-10-30 13:57 UTC Return to Bug #81572 | Download this patchThis patch is obsolete Obsoleted by patches:
Developer: jpbion@gmail.comdiff --git a/ext/intl/breakiterator/codepointiterator_internal.cpp b/ext/intl/breakiterator/codepointiterator_internal.cpp index 71ba056994..751f0c0d63 100644 --- a/ext/intl/breakiterator/codepointiterator_internal.cpp +++ b/ext/intl/breakiterator/codepointiterator_internal.cpp @@ -73,7 +73,7 @@ CodePointBreakIterator::~CodePointBreakIterator() clearCurrentCharIter(); } -UBool CodePointBreakIterator::operator==(const BreakIterator& that) const +bool CodePointBreakIterator::operator==(const BreakIterator& that) const { if (typeid(*this) != typeid(that)) { return false; diff --git a/ext/intl/breakiterator/codepointiterator_internal.h b/ext/intl/breakiterator/codepointiterator_internal.h index 43ec79d0b7..d92a793f5d 100644 --- a/ext/intl/breakiterator/codepointiterator_internal.h +++ b/ext/intl/breakiterator/codepointiterator_internal.h @@ -37,7 +37,7 @@ namespace PHP { virtual ~CodePointBreakIterator(); - virtual UBool operator==(const BreakIterator& that) const; + virtual bool operator==(const BreakIterator& that) const; virtual CodePointBreakIterator* clone(void) const; |
Copyright © 2001-2024 The PHP Group All rights reserved. |
Last updated: Sun Dec 22 03:01:28 2024 UTC |