Index: third_party/icu/source/test/intltest/citrtest.cpp |
=================================================================== |
--- third_party/icu/source/test/intltest/citrtest.cpp (revision 74230) |
+++ third_party/icu/source/test/intltest/citrtest.cpp (working copy) |
@@ -9,7 +9,6 @@ |
****************************************************************************************/ |
#include <string.h> |
-#include <typeinfo> // for 'typeid' to work |
#include "unicode/chariter.h" |
#include "unicode/ustring.h" |
@@ -1083,7 +1082,7 @@ |
virtual UBool operator==(const ForwardCharacterIterator &that) const { |
return |
this==&that || |
- (typeid(*this)==typeid(that) && pos==((SubCharIter &)that).pos); |
+ (CR_TYPEID(*this)==CR_TYPEID(that) && pos==((SubCharIter &)that).pos); |
} |
virtual int32_t hashCode() const { |