Index: third_party/icu/source/i18n/tblcoll.cpp |
=================================================================== |
--- third_party/icu/source/i18n/tblcoll.cpp (revision 74230) |
+++ third_party/icu/source/i18n/tblcoll.cpp (working copy) |
@@ -54,7 +54,6 @@ |
* 01/29/01 synwee Modified into a C++ wrapper calling C APIs (ucol.h) |
*/ |
-#include <typeinfo> // for 'typeid' to work |
#include "unicode/utypes.h" |
@@ -195,7 +194,7 @@ |
if (Collator::operator==(that)) |
return TRUE; |
- if (typeid(*this) != typeid(that)) |
+ if (CR_TYPEID(*this) != CR_TYPEID(that)) |
return FALSE; /* not the same class */ |
RuleBasedCollator& thatAlias = (RuleBasedCollator&)that; |