Index: third_party/icu/source/i18n/selfmt.cpp |
=================================================================== |
--- third_party/icu/source/i18n/selfmt.cpp (revision 74230) |
+++ third_party/icu/source/i18n/selfmt.cpp (working copy) |
@@ -14,7 +14,6 @@ |
* 11/16/09 kirtig Improved version |
********************************************************************/ |
-#include <typeinfo> // for 'typeid' to work |
#include "unicode/utypes.h" |
#include "unicode/ustring.h" |
@@ -378,7 +377,7 @@ |
if( this == &other){ |
return TRUE; |
} |
- if (typeid(*this) != typeid(other)) { |
+ if (CR_TYPEID(*this) != CR_TYPEID(other)) { |
return FALSE; |
} |
SelectFormat* fmt = (SelectFormat*)&other; |