Index: third_party/icu/source/i18n/dtrule.cpp |
=================================================================== |
--- third_party/icu/source/i18n/dtrule.cpp (revision 74230) |
+++ third_party/icu/source/i18n/dtrule.cpp (working copy) |
@@ -5,7 +5,6 @@ |
******************************************************************************* |
*/ |
-#include <typeinfo> // for 'typeid' to work |
#include "unicode/utypes.h" |
@@ -82,7 +81,7 @@ |
UBool |
DateTimeRule::operator==(const DateTimeRule& that) const { |
return ((this == &that) || |
- (typeid(*this) == typeid(that) && |
+ (CR_TYPEID(*this) == CR_TYPEID(that) && |
fMonth == that.fMonth && |
fDayOfMonth == that.fDayOfMonth && |
fDayOfWeek == that.fDayOfWeek && |