Index: third_party/icu/source/i18n/tztrans.cpp |
=================================================================== |
--- third_party/icu/source/i18n/tztrans.cpp (revision 74230) |
+++ third_party/icu/source/i18n/tztrans.cpp (working copy) |
@@ -5,7 +5,6 @@ |
******************************************************************************* |
*/ |
-#include <typeinfo> // for 'typeid' to work |
#include "unicode/utypes.h" |
@@ -66,7 +65,7 @@ |
if (this == &that) { |
return TRUE; |
} |
- if (typeid(*this) != typeid(that)) { |
+ if (CR_TYPEID(*this) != CR_TYPEID(that)) { |
return FALSE; |
} |
if (fTime != that.fTime) { |