| Index: third_party/icu/source/i18n/timezone.cpp
|
| ===================================================================
|
| --- third_party/icu/source/i18n/timezone.cpp (revision 74230)
|
| +++ third_party/icu/source/i18n/timezone.cpp (working copy)
|
| @@ -35,7 +35,6 @@
|
| * available IDs code. Misc. cleanup.
|
| *********************************************************************************/
|
|
|
| -#include <typeinfo> // for 'typeid' to work
|
|
|
| #include "unicode/utypes.h"
|
| #include "unicode/ustring.h"
|
| @@ -384,7 +383,7 @@
|
| UBool
|
| TimeZone::operator==(const TimeZone& that) const
|
| {
|
| - return typeid(*this) == typeid(that) &&
|
| + return CR_TYPEID(*this) == CR_TYPEID(that) &&
|
| fID == that.fID;
|
| }
|
|
|
|
|